forked from SvanBoxel/delete-merged-branch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.94 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
71
72
73
74
75
76
77
78
{
"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",
"main": "handler.js",
"keywords": [
"probot",
"github",
"probot-app",
"delete-branch",
"git-tools",
"github-app"
],
"scripts": {
"dev": "nodemon --exec \"npm start\"",
"gcp-dev": "functions-framework --target=probot",
"start": "probot run ./index.js",
"lint": "standard --fix",
"test": "jest && standard",
"test:watch": "jest --watch",
"test:ci": "jest && codecov",
"semantic-release": "semantic-release"
},
"dependencies": {
"@google-cloud/secret-manager": "^3.1.0",
"@probot/serverless-gcf": "^0.2.0",
"npm-check-updates": "^7.0.3",
"probot": "9.13.0",
"probot-actions-adapter": "1.0.5"
},
"devDependencies": {
"@semantic-release/npm": "7.0.5",
"codecov": "3.7.2",
"jest": "26.4.2",
"nodemon": "2.0.4",
"semantic-release": "17.2.3",
"serverless": "1.78.1",
"serverless-google-cloudfunctions": "^3.1.0",
"smee-client": "1.1.0",
"standard": "14.3.4"
},
"engines": {
"node": ">= 10.13.0"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"release": {
"plugins": [
"@semantic-release/npm"
],
"verifyConditions": [
"@semantic-release/github"
],
"publish": [
"@semantic-release/github",
"@semantic-release/npm"
]
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"tag": "latest"
},
"standard": {
"env": [
"jest"
],
"ignore": [
"/dist"
]
}
}