1
|
{
|
2
|
"name": "yargs-parser",
|
3
|
"version": "11.1.1",
|
4
|
"description": "the mighty option parser used by yargs",
|
5
|
"main": "index.js",
|
6
|
"scripts": {
|
7
|
"test": "nyc mocha test/*.js",
|
8
|
"posttest": "standard",
|
9
|
"coverage": "nyc report --reporter=text-lcov | coveralls",
|
10
|
"release": "standard-version"
|
11
|
},
|
12
|
"repository": {
|
13
|
"url": "git@github.com:yargs/yargs-parser.git"
|
14
|
},
|
15
|
"keywords": [
|
16
|
"argument",
|
17
|
"parser",
|
18
|
"yargs",
|
19
|
"command",
|
20
|
"cli",
|
21
|
"parsing",
|
22
|
"option",
|
23
|
"args",
|
24
|
"argument"
|
25
|
],
|
26
|
"author": "Ben Coe <ben@npmjs.com>",
|
27
|
"license": "ISC",
|
28
|
"devDependencies": {
|
29
|
"chai": "^4.2.0",
|
30
|
"coveralls": "^3.0.2",
|
31
|
"mocha": "^5.2.0",
|
32
|
"nyc": "^13.0.1",
|
33
|
"standard": "^12.0.1",
|
34
|
"standard-version": "^4.4.0"
|
35
|
},
|
36
|
"dependencies": {
|
37
|
"camelcase": "^5.0.0",
|
38
|
"decamelize": "^1.2.0"
|
39
|
},
|
40
|
"files": [
|
41
|
"lib",
|
42
|
"index.js"
|
43
|
],
|
44
|
"engine": {
|
45
|
"node": ">=6"
|
46
|
}
|
47
|
}
|