-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.36 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
{
"name": "owncli",
"version": "0.0.4",
"description": "command line runner",
"main": "index.js",
"scripts": {
"test": "grunt test",
"coverage": "node ./node_modules/mocha/bin/mocha --reporter mocha-istanbul",
"watch": "node ./node_modules/mocha/bin/mocha --watch"
},
"keywords": [
"cli",
"node"
],
"repository": {
"type": "git",
"url": "git@github.com:aduis/owncli.git"
},
"author": "andre.duis@gmail.com",
"contributors": [
{
"name": "Markus Dethlefsen",
"email": "hapi-rabbit@markus-inger.de"
}
],
"license": "ISC",
"dependencies": {
"chalk": "^1.0.0",
"debug": "^2.1.3",
"deep-dot": "0.0.2",
"figlet": "^1.1.0",
"fluid": "^0.1.3",
"hoek": "^2.13.0",
"jsonfile": "^2.0.0",
"lodash": "^3.8.0",
"minimist": "^1.1.1",
"require-dir": "^0.3.0",
"semver": "^4.3.4",
"shelljs": "^0.4.0"
},
"devDependencies": {
"chai": "^2.3.0",
"chai-as-promised": "^5.0.0",
"istanbul": "^0.3.13",
"coveralls": "^2.11.2",
"grunt": "~0.4.2",
"grunt-contrib-watch": "~0.5.3",
"grunt-includes": "~0.4.0",
"grunt-mocha-cov": "^0.3.0",
"grunt-mocha-istanbul": "^2.2.0",
"grunt-mocha-test": "^0.12.4",
"mocha": "^2.1.0",
"mocha-istanbul": "^0.2.0",
"sinon": "^1.14.1",
"sinon-chai": "^2.7.0",
"stripcolorcodes": "^0.1.0"
}
}