-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "cmdt",
"description": "Command-line tool for testing command-line tools",
"keywords": [
"test",
"cli",
"command-line",
"cli integration test"
],
"version": "1.0.1",
"homepage": "http://github.com/cliffano/cmdt",
"author": "Cliffano Subagio <[email protected]> (http://blog.cliffano.com)",
"contributors": [
"All contributors (https://github.com/cliffano/cmdt/graphs/contributors)"
],
"main": "./lib/cmdt",
"bin": {
"cmdt": "./bin/cmdt"
},
"preferGlobal": true,
"repository": {
"type": "git",
"url": "http://github.com/cliffano/cmdt.git"
},
"bugs": {
"url": "http://github.com/cliffano/cmdt/issues"
},
"directories": {
"bin": "./bin",
"lib": "./lib",
"test": "./test"
},
"dependencies": {
"async": "^2.5.0",
"bagofcli": "^1.0.0",
"colors": "^1.1.2",
"fs-extra": "^4.0.1",
"jazz": "^0.0.18",
"lodash": "^4.17.4",
"mkdirp": "^0.5.1",
"ncp": "^2.0.0",
"rimraf": "^2.6.1",
"yaml-js": "^0.2.0"
},
"devDependencies": {
"buster-node": "^0.7.1",
"referee": "^1.2.0"
},
"scripts": {},
"engines": {
"node": ">= 4.0.0"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/cliffano/cmdt/raw/master/LICENSE"
}
]
}