-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
74 lines (74 loc) · 1.67 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
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "pull-review",
"version": "2.6.2",
"description": "Assign pull request reviewers intelligently",
"main": "index.js",
"bin": {
"pull-review": "./bin/pull-review.js"
},
"scripts": {
"lint": "eslint --fix index.js src",
"test": "NODE_ENV=test nyc mocha test/*-test.js",
"hubot": "hubot --adapter shell --name hubot --require test/hubot",
"start": "node ./bin/pull-review"
},
"repository": {
"type": "git",
"url": "git+https://github.com/imsky/pull-review.git"
},
"keywords": [
"git",
"pull",
"request",
"github",
"review",
"hubot",
"slack"
],
"author": "Ivan Malopinsky",
"license": "MIT",
"bugs": {
"url": "https://github.com/imsky/pull-review/issues"
},
"homepage": "https://github.com/imsky/pull-review",
"dependencies": {
"body-parser": "~1.18",
"commander": "~2.11",
"debug": "~3.1",
"express": "~4.15",
"express-rate-limit": "~2.9",
"github": "~10.0",
"github-graphql-client": "~1.0",
"js-yaml": "~3.13",
"knuth-shuffle": "~1.0",
"lru-cache": "^4.1.0",
"minimatch": "~3.0",
"native-promise-only": "~0.8",
"normalize-url": "~1.9",
"url-regex": "~3.2"
},
"devDependencies": {
"chai": "~3.5",
"chai-as-promised": "~6.0",
"codecov": "~3.7",
"coffee-script": "~1.12",
"eslint": "~4.18",
"hubot": "~2.19",
"hubot-slack": "4.5.3",
"hubot-test-helper": "~1.7",
"mocha": "~3.2",
"nock": "~9.0",
"nyc": "~10.3",
"request": "~2.88",
"superagent": "~3.7"
},
"nyc": {
"check-coverage": true,
"lines": 97,
"branches": 93,
"reporter": [
"lcov",
"text-summary"
]
}
}