chalk/package.json

63 lines
1.2 KiB
JSON
Raw Normal View History

2013-08-03 02:16:26 +02:00
{
"name": "chalk",
2015-02-23 14:41:32 +07:00
"version": "1.0.0",
2015-02-17 15:57:40 +07:00
"description": "Terminal string styling done right. Much color.",
2013-12-13 20:26:47 +01:00
"license": "MIT",
2015-06-30 19:55:37 +02:00
"repository": "chalk/chalk",
"maintainers": [
2015-05-25 13:18:05 +02:00
"Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)",
"Joshua Appelman <jappelman@xebia.com> (jbnicolai.com)"
],
2013-12-13 20:26:47 +01:00
"engines": {
2014-03-26 16:29:42 +01:00
"node": ">=0.10.0"
2013-12-13 20:26:47 +01:00
},
"scripts": {
"test": "mocha",
"bench": "matcha benchmark.js",
"coverage": "nyc npm test && nyc report",
"coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls"
2013-12-13 20:26:47 +01:00
},
"files": [
"index.js"
],
2013-08-03 02:16:26 +02:00
"keywords": [
"color",
"colour",
"colors",
"terminal",
"console",
"cli",
"string",
2015-05-25 13:18:05 +02:00
"str",
2013-08-03 02:16:26 +02:00
"ansi",
2015-05-25 13:18:05 +02:00
"style",
2013-08-03 02:16:26 +02:00
"styles",
"tty",
"formatting",
"rgb",
"256",
"shell",
"xterm",
"log",
"logging",
"command-line",
"text"
],
"dependencies": {
2015-02-22 10:32:55 +01:00
"ansi-styles": "^2.0.1",
"escape-string-regexp": "^1.0.2",
"has-ansi": "^1.0.3",
"strip-ansi": "^2.0.1",
"supports-color": "^1.3.0"
2013-08-03 02:16:26 +02:00
},
"devDependencies": {
"coveralls": "^2.11.2",
"matcha": "^0.6.0",
"mocha": "*",
"nyc": "^2.1.4",
"require-uncached": "^1.0.2",
"resolve-from": "^1.0.0",
"semver": "^4.3.3"
2013-08-03 02:16:26 +02:00
}
}