File size: 1,642 Bytes
78c921d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
  "name": "command-line-args",
  "version": "5.2.1",
  "description": "A mature, feature-complete library to parse command-line options.",
  "repository": "https://github.com/75lb/command-line-args",
  "scripts": {
    "test": "npm run dist && npm run test:js && npm run test:mjs",
    "test:js": "node dist/tests.js",
    "test:mjs": "node --experimental-modules test/tests.mjs",
    "test:ci": "npm run test:js",
    "docs": "jsdoc2md -c jsdoc.conf index.mjs > doc/API.md && jsdoc2md -c jsdoc.conf lib/option-definition.mjs > doc/option-definition.md",
    "cover": "nyc --reporter=text-lcov test-runner test/*.js test/internals/*.js | coveralls",
    "dist": "rollup index.mjs -f cjs -e 'lodash.camelcase' -o dist/index.js && rollup index.mjs -f esm -e 'lodash.camelcase' -o dist/index.mjs && rollup test/tests.mjs -f cjs -e 'test-runner,assert,lodash.camelcase' -o dist/tests.js"
  },
  "main": "dist/index.js",
  "keywords": [
    "argv",
    "parse",
    "argument",
    "args",
    "option",
    "options",
    "parser",
    "parsing",
    "cli",
    "command",
    "line"
  ],
  "author": "Lloyd Brookes <75pound@gmail.com>",
  "license": "MIT",
  "engines": {
    "node": ">=4.0.0"
  },
  "files": [
    "index.mjs",
    "lib",
    "dist/index.js",
    "dist/index.mjs"
  ],
  "devDependencies": {
    "coveralls": "^3.1.1",
    "jsdoc-to-markdown": "^7.1.1",
    "rollup": "~1.7.4",
    "test-runner": "^0.5.1"
  },
  "dependencies": {
    "array-back": "^3.1.0",
    "find-replace": "^3.0.0",
    "lodash.camelcase": "^4.3.0",
    "typical": "^4.0.0"
  },
  "standard": {
    "ignore": [
      "dist"
    ],
    "envs": []
  }
}