-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.37 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
{
"name": "jir",
"version": "v0.0.4",
"description": "Hippo assistance on the command line",
"keywords": [
"cli",
"hippo"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/abogaart/jir.git"
},
"homepage": "https://github.com/abogaart/jir",
"author": {
"name": "Arthur Bogaart",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/abogaart/jir/issues"
},
"preferGlobal": "true",
"engines": {
"node": ">=0.12"
},
"dependencies": {
"chalk": "1.1.0",
"commander": "2.8.1",
"inquirer": "0.8.5",
"lodash": "3.10.0",
"q": "2.0.3",
"shelljs": "0.5.1",
"swig": "1.4.2"
},
"main": "./lib/jir",
"bin": {
"jir": "./lib/cli.js"
},
"scripts": {
"test": "mocha $(find lib -path '*.spec.js') -R dot",
"coverage": "istanbul cover _mocha -- $(find lib -path '*.spec.js') -R spec",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"devDependencies": {
"chai": "3.0.0",
"coveralls": "2.11.2",
"gulp": "3.9.0",
"gulp-jscs": "1.6.0",
"gulp-jshint": "1.11.2",
"gulp-mocha": "2.1.2",
"gulp-notify": "2.2.0",
"gulp-util": "3.0.6",
"istanbul": "0.3.17",
"jshint-stylish": "2.0.1",
"mocha": "2.2.5",
"node-pre-gyp": "0.6.7",
"robotjs": "0.1.2",
"sinon": "1.15.4",
"test-console": "1.0.0"
}
}