forked from busterjs/buster-cli
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.26 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
{
"name": "buster-cli",
"version": "0.6.0",
"description": "Internal wrapper and util for creating CLIs in the buster project.",
"author": { "name": "August Lilleaas and Christian Johansen" },
"contributors": [{
"name": "Christian Johansen",
"email": "[email protected]",
"url": "http://cjohansen.no"
}, {
"name": "August Lilleaas",
"email": "[email protected]",
"url": "http://augustl.com"
}, {
"name": "Stein Magnus Jodal",
"email": "[email protected]",
"url": "http://jodal.no"
}],
"main": "./lib/buster-cli",
"repository": {
"type": "git",
"url": "https://github.com/busterjs/buster-cli.git"
},
"license": {
"type": "BSD",
"url": "https://github.com/busterjs/buster-cli/blob/master/LICENSE"
},
"scripts": {
"test": "node run-tests.js"
},
"dependencies": {
"bane": "~0.1",
"posix-argv-parser": ">=0.4",
"ansi-colorizer": "~0.5.0",
"stream-logger": ">=0.3.0",
"buster-configuration": "=0.5.2",
"rimraf": "~1",
"minimatch": ">=0.2"
},
"devDependencies": {
"referee": "*",
"buster-test": "*",
"sinon": "~1.4"
}
}