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
50 lines (50 loc) · 1.47 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.47 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
40
41
42
43
44
45
46
47
48
49
50
{
"type": "module",
"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": "npx @github/local-action . src/index.ts .env",
"build": "tsc && npm run bundle",
"bundle": "npx rollup --config rollup.config.js",
"lint": "eslint src",
"prepare": "npm run build"
},
"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.11.1",
"@actions/github": "^6.0.0",
"semver": "^7.7.1",
"slackify-markdown": "^4.4.0"
},
"devDependencies": {
"@eslint/js": "^9.23.0",
"@github/local-action": "^3.1.3",
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-typescript": "^12.1.2",
"@tsconfig/node18": "^18.2.4",
"@types/node": "^22.13.17",
"@types/semver": "^7.7.0",
"eslint": "^9.23.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.6",
"globals": "^16.0.0",
"prettier": "^3.5.3",
"rollup": "^4.39.0",
"typescript": "^5.8.2",
"typescript-eslint": "^8.29.0"
}
}