-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
59 lines (59 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
{
"name": "trafico",
"version": "0.0.1",
"description": "GitHub App built with Probot that automatically labels pull requests on certain conditions",
"main": "index.js",
"scripts": {
"start": "DEBUG=probot* probot run ./index.js",
"start:dev": "nodemon --exec \"npm start\""
},
"repository": "https://github.com/orhan/trafico.git",
"keywords": [
"probot",
"probot-app",
"probot-plugin",
"github-app",
"pull request",
"label",
"marge request"
],
"author": "Orhan Sönmez",
"license": "Apache-2.0",
"dependencies": {
"debug": "^4.1.1",
"dotenv": "^8.0.0",
"probot": "^9.2.13"
},
"devDependencies": {
"codecov": "^3.4.0",
"commitizen": "^3.0.2",
"cz-conventional-changelog": "^2.1.0",
"husky": "^2.2.0",
"jest": "^24.0.0",
"jsonwebtoken": "^8.5.1",
"lint-staged": "^8.1.6",
"nodemon": "^1.19.0",
"prettier": "1.17.1",
"probot-config": "^1.0.0",
"raven": "^2.6.3",
"semantic-release": "^15.13.13",
"smee-client": "^1.1.0",
"validate-commit-msg": "^2.14.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"{index,lib/**/*}.js": [
"prettier --write {index,lib/**/*,test/auto-pr-labeler.test}.js",
"git add"
]
},
"husky": {
"hooks": {
"pre-push": "npm test"
}
}
}