-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
42 lines (42 loc) · 1.17 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
{
"name": "semver-release-action",
"version": "1.0.0",
"description": "Github action to release project using semantic versioning",
"main": "src/index.js",
"scripts": {
"lint": "eslint",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/huggingface/semver-release-action.git"
},
"keywords": [
"github",
"release",
"semantic",
"version"
],
"author": "huggingface",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/huggingface/semver-release-action/issues"
},
"homepage": "https://github.com/huggingface/semver-release-action#readme",
"type": "module",
"dependencies": {
"@actions/core": "^1.10.0",
"@semantic-release/commit-analyzer": "^12.0.0",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/github": "^10.0.3",
"@semantic-release/release-notes-generator": "^13.0.0",
"semantic-release": "^23.0.8"
},
"devDependencies": {
"eslint": "^8.38.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1"
}
}