-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 935 Bytes
/
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
{
"name": "go-version-action",
"private": true,
"description": "Go Version action",
"main": "src/main.js",
"scripts": {
"format": "prettier --write **/*.js",
"format-check": "prettier --check **/*.js",
"lint": "eslint .",
"lint-fix": "eslint --fix .",
"test": "jest",
"package": "ncc build --minify",
"all": "npm run format && npm run lint && npm run package && npm test"
},
"type": "module",
"keywords": [
"actions",
"go"
],
"author": "Arne Jørgensen",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.11.1",
"node-fetch": "~2.7.0",
"semver": "^7.6.3"
},
"devDependencies": {
"@babel/preset-env": "^7.26.0",
"@vercel/ncc": "^0.38.3",
"babel-jest": "^29.7.0",
"eslint": "^8.57.1",
"eslint-plugin-github": "^5.1.3",
"eslint-plugin-jest": "^28.9.0",
"jest": "^29.7.0",
"js-yaml": "^4.1.0",
"prettier": "3.4.1"
}
}