-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
46 lines (46 loc) · 1.11 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
46
{
"name": "pr-semver-bump",
"version": "1.0.0",
"description": "A GitHub Action to bump and tag a new semantic version when a pull request is merged.",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"prepare": "ncc build index.js -o dist --source-map",
"test": "jest --coverage",
"all": "npm run lint && npm run prepare && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/javascript-action.git"
},
"keywords": [
"GitHub",
"Actions",
"pull",
"request",
"PR",
"semver",
"bump",
"release",
"tag",
"notes"
],
"author": "Jeff Linse",
"license": "MIT",
"bugs": {
"url": "https://github.com/actions/javascript-action/issues"
},
"homepage": "https://github.com/actions/javascript-action#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"semver": "^7.3.5"
},
"devDependencies": {
"@vercel/ncc": "^0.34.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.26.0",
"jest": "^25.0.0"
}
}