-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
49 lines (49 loc) · 1.24 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
47
48
49
{
"name": "action-bump-semver",
"version": "1.0.0",
"private": true,
"description": "Bump a semver version up.",
"main": "lib/main.js",
"scripts": {
"build": "tsc && ncc build",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions-ecosystem/action-bump-semver.git"
},
"keywords": [
"actions",
"github",
"versioning"
],
"author": "The Actions Ecosystem Authors",
"license": "Apache 2.0",
"dependencies": {
"@actions/core": "^1.2.3",
"@actions/github": "^2.1.1",
"@octokit/rest": "^16.43.1",
"semver": "^7.3.2"
},
"devDependencies": {
"@octokit/webhooks": "^7.6.2",
"@types/jest": "^25.2.3",
"@types/node": "^14.0.10",
"@types/semver": "^7.1.0",
"@typescript-eslint/parser": "^3.1.0",
"@zeit/ncc": "^0.20.5",
"eslint": "^5.16.0",
"eslint-plugin-github": "^2.0.0",
"eslint-plugin-jest": "^22.21.0",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^24.9.0",
"jest-circus": "^24.9.0",
"js-yaml": "^3.14.0",
"prettier": "^1.19.1",
"ts-jest": "^24.2.0",
"typescript": "^3.9.3"
}
}