-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.36 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
{
"name": "probot-app-delete-merged-branch",
"version": "1.0.2-0",
"description": "A GitHub app built that automatically deletes a branch after it's merged",
"author": "Nadiia Dmytrenko <[email protected]>",
"license": "ISC",
"repository": "https://github.com/uber-workflow/probot-app-delete-merged-branch.git",
"homepage": "https://github.com/uber-workflow/probot-app-delete-merged-branch",
"keywords": [
"probot",
"github",
"probot-app",
"delete-branch",
"git-tools",
"github-app"
],
"scripts": {
"dev": "nodemon --exec \"npm start\"",
"start": "probot run ./index.js",
"lint": "standard --fix",
"test": "jest && standard",
"test:watch": "jest --watch",
"test:ci": "jest && codecov",
"semantic-release": "semantic-release"
},
"dependencies": {
"probot": "^9.2.10"
},
"devDependencies": {
"codecov": "3.1.0",
"jest": "23.4.1",
"nodemon": "1.18.4",
"semantic-release": "15.9.16",
"smee-client": "1.0.2",
"standard": "12.0.0"
},
"engines": {
"node": ">= 8.9.0"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"release": {
"prepare": [],
"verifyConditions": [
"@semantic-release/github"
],
"publish": [
"@semantic-release/github"
]
},
"standard": {
"env": [
"jest"
]
}
}