-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 813 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 813 Bytes
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
{
"name": "pr-name-generator-action",
"version": "v0.0.4",
"description": "A Github action to create consistent names for PR based environments",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"prepare": "ncc build index.js -o dist --source-map --license licenses.txt",
"test": "jest",
"all": "yarn lint && yarn prepare && yarn test"
},
"repository": "git@github.com:devopsmakers/pr-name-generator-action.git",
"author": "<tim.birkett+pr-name-generator-action@devopsmakers.co.uk>",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.8.2",
"@actions/github": "^5.0.3",
"unique-names-generator": "^4.7.1"
},
"devDependencies": {
"@vercel/ncc": "^0.33.4",
"eslint": "^8.15.0",
"eslint-config-google": "^0.14.0",
"jest": "^28.1.0"
}
}