-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
60 lines (60 loc) · 1.32 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
{
"name": "gerrit-cli",
"version": "1.0.0",
"description": "Gerrit in your command lines.",
"keywords": [
"gerrit",
"git",
"gerrit-cli",
"cli",
"code-review"
],
"license": "MIT",
"author": "Shane Smith <[email protected]> (http://shane.smudel.ca)",
"main": "lib/cli",
"repository": "shanesmith/gerrit-cli",
"preferGlobal": true,
"engines": {
"node": ">=0.12.0"
},
"bin": {
"gerrit": "bin/gerrit",
"ger": "bin/gerrit"
},
"dependencies": {
"bluebird": "^3.4.6",
"chalk": "^1.1.0",
"cli-table": "^0.3.1",
"commander": "^2.7.0",
"cross-spawn": "^5.1.0",
"fs-extra": "^1.0.0",
"inquirer": "^1.2.3",
"inquirer-autocomplete-prompt": "^0.3.0",
"lodash": "^4.17.2",
"moment": "^2.10.2",
"open": "0.0.5",
"string_score": "^0.1.22",
"word-wrap": "^1.0.3"
},
"scripts": {
"test": "npm run lint && npm run unit",
"lint": "jshint bin/gerrit lib/* test/*",
"unit": "mocha ./test/*.test.js"
},
"files": [
"bin",
"lib",
"completion"
],
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"jshint": "^2.9.5",
"mocha": "^3.1.2",
"mock-spawn": "^0.2.6",
"proxyquire": "^1.7.10",
"sinon": "^1.17.6",
"sinon-as-promised": "^4.0.2",
"sinon-chai": "^2.8.0"
}
}