package.json
 1  {
 2    "name": "yargs-parser",
 3    "version": "18.1.3",
 4    "description": "the mighty option parser used by yargs",
 5    "main": "index.js",
 6    "scripts": {
 7      "fix": "standard --fix",
 8      "test": "c8 --reporter=text --reporter=html  mocha test/*.js",
 9      "posttest": "standard",
10      "coverage": "c8 report --check-coverage check-coverage --lines=100 --branches=97 --statements=100"
11    },
12    "repository": {
13      "type": "git",
14      "url": "https://github.com/yargs/yargs-parser.git"
15    },
16    "keywords": [
17      "argument",
18      "parser",
19      "yargs",
20      "command",
21      "cli",
22      "parsing",
23      "option",
24      "args",
25      "argument"
26    ],
27    "author": "Ben Coe <ben@npmjs.com>",
28    "license": "ISC",
29    "devDependencies": {
30      "c8": "^7.0.1",
31      "chai": "^4.2.0",
32      "mocha": "^7.0.0",
33      "standard": "^14.3.1"
34    },
35    "dependencies": {
36      "camelcase": "^5.0.0",
37      "decamelize": "^1.2.0"
38    },
39    "files": [
40      "lib",
41      "index.js"
42    ],
43    "engines": {
44      "node": ">=6"
45    }
46  }