-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.04 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
{
"name": "minargs",
"version": "2.0.3",
"description": "minimum viable argument parser",
"main": "index.js",
"scripts": {
"preversion": "npm run lt",
"prepublish": "npm run lt",
"lt": "npm run lint && npm test",
"test": "tap",
"lint": "eslint"
},
"author": {
"name": "Darcy Clarke",
"email": "[email protected]",
"url": "https://darcyclarke.me"
},
"repository": {
"type": "git",
"url": "git+https://github.com/darcyclarke/minargs"
},
"engines": {
"node": "^12.13.0 || ^14.15.0 || >=16"
},
"license": "Apache-2.0",
"devDependencies": {
"eslint": "^7.18.0",
"tap": "^15.1.6"
},
"bugs": {
"url": "https://github.com/darcyclarke/minargs/issues"
},
"homepage": "https://github.com/darcyclarke/minargs#readme",
"keywords": [
"argument",
"options",
"flags",
"values",
"positionals",
"parsing",
"strict",
"arg",
"argv",
"process",
"nopt",
"commander",
"minimist",
"yargs",
"parseargs",
"cli",
"tool"
]
}