forked from lmarkus/ReviewBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.45 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": "reviewme",
"version": "0.1.0",
"description": "GitHub PR Review Helper",
"author": "@lmarkus",
"repository": "https://github.com/lmarkus/ReviewBot/",
"main": "server.js",
"license": "ISC",
"engines": {
"node": "7.4.0",
"npm": "4.2.0"
},
"scripts": {
"test": "grunt test",
"build": "grunt build && git add .build",
"all": "npm run build && npm run test",
"lint": "grunt eslint",
"validate": "npm ls"
},
"dependencies": {
"@slack/client": "^3.8.1",
"construx": "^1.0.0",
"construx-copier": "^1.0.0",
"construx-dustjs": "^1.1.0",
"construx-less": "^1.0.0",
"eslint": "^3.15.0",
"express": "^4.12.2",
"github": "^8.1.0",
"githubhook": "^1.7.1",
"kraken-js": "^2.0.0",
"lodash": "^4.17.4",
"lowdb": "^0.14.0",
"makara": "^2.0.3"
},
"devDependencies": {
"chai": "^3.5.0",
"del": "^2.2.2",
"grunt": "^0.4.5",
"grunt-cli": "^0.1.13",
"grunt-config-dir": "^0.3.2",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-less": "^1.4.0",
"grunt-copy-browser-modules": "^6.0.0",
"grunt-copy-to": "0.0.10",
"grunt-dustjs": "^1.4.0",
"grunt-eslint": "^19.0.0",
"grunt-mocha-cli": "^1.14.0",
"grunt-mocha-istanbul": "^5.0.2",
"istanbul": "^0.4.5",
"mocha": "^1.18.0",
"mockery": "^2.0.0",
"pre-commit": "^1.2.2",
"supertest": "^0.9.0"
},
"pre-commit": [
"lint",
"validate",
"test",
"build"
]
}