forked from yargs/yargs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 1.69 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "yargs",
"version": "3.10.0",
"description": "Light-weight option parsing with an argv hash. No optstrings attached.",
"main": "./index.js",
"files": [
"index.js",
"lib",
"completion.sh.hbs",
"LICENSE"
],
"dependencies": {
"camelcase": "^1.0.2",
"cliui": "^2.1.0",
"decamelize": "^1.0.0",
"window-size": "0.1.0"
},
"devDependencies": {
"chai": "^2.2.0",
"coveralls": "^2.11.2",
"hashish": "0.0.4",
"mocha": "^2.2.1",
"nyc": "^2.2.1",
"standard": "^3.11.1"
},
"scripts": {
"test": "standard && nyc mocha --check-leaks && nyc report",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "http://github.com/bcoe/yargs.git"
},
"standard": {
"ignore": [
"**/example/**"
],
"globals": [
"it"
]
},
"keywords": [
"argument",
"args",
"option",
"parser",
"parsing",
"cli",
"command"
],
"author": {
"name": "Alex Ford",
"email": "[email protected]",
"url": "http://CodeTunnel.com"
},
"contributors": [
{
"name": "Benjamin Coe",
"email": "[email protected]",
"url": "https://github.com/bcoe"
},
{
"name": "Chris Needham",
"email": "[email protected]",
"url": "http://chrisneedham.com"
},
{
"name": "James Nylen",
"email": "[email protected]",
"url": "https://github.com/nylen"
},
{
"name": "Benjamin Horsleben",
"url": "https://github.com/fizker"
},
{
"name": "Lin Clark",
"url": "https://github.com/linclark"
}
],
"license": "MIT",
"engine": {
"node": ">=0.4"
}
}