This repository was archived by the owner on Jan 10, 2023. It is now read-only.
forked from SvanBoxel/delete-merged-branch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.71 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
60
61
62
63
64
65
66
67
68
69
70
{
"name": "delete-merged-branch",
"version": "0.0.0-development",
"description": "A GitHub app built that automatically deletes a branch after it's merged. That's it, enjoy! ",
"author": "Sebass van Boxel <[email protected]>",
"license": "ISC",
"repository": "https://github.com/SvanBoxel/delete-merged-branch.git",
"homepage": "https://github.com/SvanBoxel/delete-merged-branch",
"bugs": "https://github.com/SvanBoxel/delete-merged-branchissues",
"keywords": [
"probot",
"github",
"probot-app",
"delete-branch",
"git-tools",
"github-app"
],
"scripts": {
"now-start": "PRIVATE_KEY=$(echo $PRIVATE_KEY | base64 -d) npm start",
"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": {
"@slack/client": "^4.8.0",
"probot": "7.4.0"
},
"devDependencies": {
"codecov": "3.1.0",
"jest": "23.4.1",
"nodemon": "1.18.7",
"semantic-release": "15.12.2",
"smee-client": "1.0.2",
"standard": "12.0.0"
},
"engines": {
"node": ">= 8.3.0"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"release": {
"prepare": [],
"verifyConditions": [
"@semantic-release/github"
],
"publish": [
"@semantic-release/github"
]
},
"now": {
"alias": "delete-merged-branch",
"env": {
"APP_ID": "@app_id",
"NODE_ENV": "production",
"PRIVATE_KEY": "@private_key",
"WEBHOOK_SECRET": "@webhook_secret"
}
},
"standard": {
"env": [
"jest"
]
}
}