-
Notifications
You must be signed in to change notification settings - Fork 106
/
package.json
63 lines (63 loc) · 1.34 KB
/
package.json
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
60
61
62
63
{
"name": "command-line-args",
"version": "6.0.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:ci",
"test:ci": "test-runner test/*.js test/*.cjs test/internals/*.js",
"docs": "75lb-nature jsdoc2md index.js > doc/API.md && 75lb-nature jsdoc2md lib/option-definition.js > doc/option-definition.md",
"dist": "75lb-nature cjs-build index.js"
},
"type": "module",
"exports": {
"import": "./index.js",
"require": "./dist/index.cjs"
},
"keywords": [
"argv",
"parse",
"argument",
"args",
"option",
"options",
"parser",
"parsing",
"cli",
"command",
"line"
],
"author": "Lloyd Brookes <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=12.20"
},
"files": [
"index.js",
"lib",
"dist"
],
"dependencies": {
"array-back": "^6.2.2",
"find-replace": "^5.0.2",
"lodash.camelcase": "^4.3.0",
"typical": "^7.2.0"
},
"peerDependencies": {
"@75lb/nature": "latest"
},
"peerDependenciesMeta": {
"@75lb/nature": {
"optional": true
}
},
"standard": {
"ignore": [
"dist"
],
"envs": []
},
"devDependencies": {
"test-runner": "^0.10.1"
}
}