-
Notifications
You must be signed in to change notification settings - Fork 122
/
package.json
45 lines (45 loc) · 1.13 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
{
"name": "semantic-pull-requests",
"version": "0.0.0-development",
"description": "GitHub status check that ensures your pull requests follow the Conventional Commits spec",
"main": "index.js",
"files": [
"index.js",
"lib"
],
"scripts": {
"start": "probot run ./index.js",
"test": "jest test/* && npm run lint",
"test:watch": "DEBUG=octokitz:rest* jest test/* --watch --notify --notifyMode=change --coverage",
"lint": "standard --fix",
"semantic-release": "semantic-release"
},
"standard": {
"env": [
"jest"
]
},
"repository": "https://github.com/probot/semantic-pull-requests",
"keywords": [
"probot",
"probot-plugin"
],
"author": "Zeke Sikelianos (https://github.com/zeke)",
"license": "Apache-2.0",
"dependencies": {
"conventional-commit-types": "^3.0.0",
"parse-commit-message": "^4.0.0-canary.20",
"probot": "^7.5.3",
"probot-config": "^1.0.0"
},
"devDependencies": {
"@octokit/rest": "^15.9.4",
"jest": "^23.4.0",
"nock": "^9.4.2",
"semantic-release": "^12.2.2",
"standard": "^12.0.1"
},
"engines": {
"node": "8"
}
}