forked from skye2k2/pr-police
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 903 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 903 Bytes
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
{
"name": "pr-police",
"version": "1.2.0",
"description": "Slackbot that warns about open pull requests with given labels",
"main": "index.js",
"scripts": {
"pretest": "standard",
"test": "tape test/*.js | faucet",
"start": "node index.js",
"commitmsg": "conventional-changelog-lint -e",
"version": "standard-changelog"
},
"keywords": [
"slackbot",
"pull",
"request",
"github",
"labels"
],
"bin": {
"pr-police": "./bin/pr-police"
},
"author": "rogeriopvl",
"license": "MIT",
"dependencies": {
"minimist": "^1.2.0",
"pullhub": "^1.0.1",
"slackbots": "^1.0.2"
},
"devDependencies": {
"conventional-changelog-lint": "^1.1.9",
"faucet": "^0.0.1",
"husky": "^0.13.3",
"proxyquire": "^1.7.11",
"sinon": "^2.1.0",
"standard": "^10.0.2",
"standard-changelog": "^1.0.1",
"tape": "^4.6.3"
}
}