-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.22 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
{
"name": "branch-convention-check",
"version": "1.0.1",
"description": "Action that checks wether newly created branches follow a naming convention",
"main": "index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "npx eslint --fix .",
"build": "tsc && ncc build lib/action.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/duart38/branch-convention-check.git"
},
"keywords": [
"github",
"actions",
"branch",
"naming",
"convention"
],
"author": "duart38",
"license": "MIT",
"bugs": {
"url": "https://github.com/duart38/branch-convention-check/issues"
},
"homepage": "https://github.com/duart38/branch-convention-check",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.1.0"
},
"devDependencies": {
"@types/node": "^18.8.2",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@vercel/ncc": "^0.34.0",
"eslint": "^8.24.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.3.0",
"eslint-plugin-promise": "^6.0.1",
"typescript": "^4.8.4"
}
}