-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1 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
{
"name" : "yanop",
"description" : "Yet Another Node Option Parser",
"version" : "0.1.3",
"bugs" : "https://github.com/frodwith/yanop/issues",
"keywords" : [ "option", "parse", "commandline", "command", "line" ],
"main" : "./lib/yanop.js",
"directories" : {
"lib" : "./lib",
"test" : "./test"
},
"dependencies" : {
},
"devDependencies" : {
"nodeunit" : ">=0.5.1"
},
"engines" : {
"node" : ">=0.6.0"
},
"scripts" : {
"test": "nodeunit test/*.js"
},
"maintainers" : [
{ "name": "Paul Driver", "email": "frodwith@gmail.com" }
],
"contributors" : [
{ "name": "Paul Drvier", "email": "frodwith@gmail.com" }
],
"licences" : [
{
"type" : "MIT License",
"url" : "http://www.opensource.org/licenses/mit-license"
}
],
"repositories" : [
{
"type" : "git",
"url" : "http://github.com/frodwith/yanop"
}
]
}