forked from mithro/autolabeler
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 975 Bytes
/
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
{
"name": "commit-labeller",
"version": "1.0.0",
"description": "A GitHub App built with probot that adds labels to Pull Requests based on matched commit patterns.",
"author": "Brandon Keepers",
"license": "ISC",
"repository": "https://github.com/explaura/autolabeler.git",
"scripts": {
"dev": "nodemon",
"lint": "standard --fix",
"start": "probot run ./index.js",
"test": "jest && standard",
"test:watch": "jest --watch --notify --notifyMode=change --coverage"
},
"dependencies": {
"ignore": "^3.3.3",
"js-yaml": "^3.9.0",
"probot": "^7.5.0"
},
"devDependencies": {
"jest": "^22.2.2",
"nodemon": "^1.17.2",
"smee-client": "^1.0.1",
"standard": "^11.0.0"
},
"standard": {
"env": [
"jest"
]
},
"engines": {
"node": ">= 8.3.0"
},
"nodemonConfig": {
"exec": "npm start",
"watch": [
".env",
"."
]
},
"jest": {
"testURL": "http://localhost/"
}
}