forked from deepakputhraya/action-branch-name
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
30 lines (30 loc) · 864 Bytes
/
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
{
"name": "action-branch-name",
"version": "2.0.0",
"description": "Github action to enforce naming convention on branch names",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"prepare": "ncc build index.js -o dist --source-map --license licenses.txt",
"test": "echo 'no tests'",
"all": "npm run lint && npm run prepare && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/payble-payments/action-branch-name"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/payble-payments/action-branch-name/issues"
},
"homepage": "https://github.com/payble-payments/action-branch-name/#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1"
},
"devDependencies": {
"@vercel/ncc": "^0.31.1",
"eslint": "^8.0.0"
}
}