forked from hoangvvo/gitflow-workflow-action
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.1 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.1 KB
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
{
"private": "true",
"name": "gitflow-workflow-action",
"version": "0.2.3",
"description": "A Github Action to automate merge to production PR",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --ext .js src",
"prepare": "ncc build src/index.js -o dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hoangvvo/prod-pr-action.git"
},
"author": "Hoang Vo (https://hoangvvo.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/hoangvvo/prod-pr-action/issues"
},
"homepage": "https://github.com/hoangvvo/prod-pr-action#readme",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@slack/web-api": "^6.11.0",
"semver": "^7.5.4",
"slackify-markdown": "^4.4.0"
},
"devDependencies": {
"@tsconfig/node18": "^18.2.2",
"@types/node": "^20.10.5",
"@types/semver": "^7.5.6",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.1",
"prettier": "^3.1.1"
}
}