wallet-core/node_modules/cliui/package.json

64 lines
1.2 KiB
JSON
Raw Normal View History

2017-05-03 15:35:00 +02:00
{
"name": "cliui",
2017-05-27 17:36:13 +02:00
"version": "3.2.0",
2017-05-03 15:35:00 +02:00
"description": "easily create complex multi-column command-line-interfaces",
"main": "index.js",
"scripts": {
2017-05-27 17:36:13 +02:00
"pretest": "standard",
"test": "nyc mocha",
"coverage": "nyc --reporter=text-lcov mocha | coveralls",
"version": "standard-version"
2017-05-03 15:35:00 +02:00
},
"repository": {
"type": "git",
2017-05-27 17:36:13 +02:00
"url": "http://github.com/yargs/cliui.git"
2017-05-03 15:35:00 +02:00
},
"config": {
"blanket": {
"pattern": [
"index.js"
],
"data-cover-never": [
"node_modules",
"test"
],
"output-reporter": "spec"
}
},
"standard": {
"ignore": [
"**/example/**"
],
"globals": [
"it"
]
},
"keywords": [
"cli",
"command-line",
"layout",
"design",
"console",
"wrap",
"table"
],
"author": "Ben Coe <ben@npmjs.com>",
"license": "ISC",
"dependencies": {
2017-05-27 17:36:13 +02:00
"string-width": "^1.0.1",
"strip-ansi": "^3.0.1",
"wrap-ansi": "^2.0.0"
2017-05-03 15:35:00 +02:00
},
"devDependencies": {
2017-05-27 17:36:13 +02:00
"chai": "^3.5.0",
"chalk": "^1.1.2",
"coveralls": "^2.11.8",
"mocha": "^2.4.5",
"nyc": "^6.4.0",
"standard": "^6.0.8",
"standard-version": "^2.1.2"
},
"files": [
"index.js"
]
}