-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.22 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
{
"name": "action-version-check",
"version": "0.0.4",
"description": "Check if the current version is compliant with the specification",
"main": "index.js",
"scripts": {
"lint": "eslint src",
"test": "jest tests",
"build": "ncc build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arcblock/action-version-check.git"
},
"keywords": [
"github-action",
"commitlint"
],
"author": "zhenqiang <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/arcblock/action-version-check/issues"
},
"homepage": "https://github.com/arcblock/action-version-check#readme",
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/github": "^5.0.1",
"axios": "^0.26.1",
"semver": "^7.3.5"
},
"devDependencies": {
"@arcblock/eslint-config-base": "^0.1.8",
"@vercel/ncc": "^0.33.3",
"babel-eslint": "^10.1.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-unicorn": "^34.0.1",
"jest": "^27.5.1",
"prettier": "^2.6.2"
},
"engines": {
"node": "^16.0.0"
}
}