wallet-core/node_modules/cliui/package.json

68 lines
1.2 KiB
JSON
Raw Normal View History

2017-05-03 15:35:00 +02:00
{
"name": "cliui",
2018-09-20 02:56:13 +02:00
"version": "4.1.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",
2018-09-20 02:56:13 +02:00
"release": "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": {
2018-09-20 02:56:13 +02:00
"string-width": "^2.1.1",
"strip-ansi": "^4.0.0",
2017-05-27 17:36:13 +02:00
"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",
2018-09-20 02:56:13 +02:00
"mocha": "^3.0.0",
"nyc": "^10.0.0",
"standard": "^8.0.0",
"standard-version": "^3.0.0"
2017-05-27 17:36:13 +02:00
},
"files": [
"index.js"
2018-09-20 02:56:13 +02:00
],
"engine": {
"node": ">=4"
}
}