-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.17 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
{
"name": "slack-merge-queue",
"version": "4.1.1",
"description": "manages a merge queue with github actions and slack",
"main": "src/index.js",
"author": "Layton Whiteley",
"contributors": [
{
"name": "Smart Host"
}
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 0",
"commit": "git add . && git commit -am 'chore: add dist action'",
"push": "git push --follow-tags",
"commit:push": "npm run commit && npm run push",
"release:patch": "npm version patch && npm run push",
"release:minor": "npm version minor && npm run push",
"release:major": "npm version major && npm run push"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smarthost/slack-merge-queue.git"
},
"keywords": [
"actions",
"github",
"action",
"merge",
"queue",
"init"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/smarthost/slack-merge-queue/issues"
},
"homepage": "https://github.com/smarthost/slack-merge-queue#readme",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@slack/web-api": "^7.3.4",
"lodash": "^4.17.21"
}
}