-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.08 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.08 KB
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
{
"name": "kidzboptions",
"version": "0.10.0",
"description": "Lightweight and easy command line option parsing.",
"homepage": "https://github.com/watt/kidzboptions",
"repository": "https://github.com/watt/kidzboptions.git",
"bugs": {
"url": "https://github.com/watt/kidzboptions/issues",
"email": "andrew@watt.coffee"
},
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "tape tests/**/*_test.js | faucet",
"jsdoc": "jsdoc -c jsdoc_conf.json -d docs"
},
"keywords": [
"argument",
"arguments",
"argv",
"cli",
"command",
"getopt",
"option",
"options",
"parser",
"parsing"
],
"author": {
"name": "Andrew Watt",
"email": "andrew@watt.coffee"
},
"license": "MIT",
"files": [
".eslintrc.js",
"index.js",
"jsdoc_conf.json",
"package.json",
"README.md",
"CHANGELOG.md"
],
"devDependencies": {
"faucet": "0.0.1",
"jsdoc": "^3.4.3",
"tape": "^4.6.3"
},
"dependencies": {
"cli-format": "^3.0.9"
},
"engines": {
"node": ">=6"
}
}