-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1 KB
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
{
"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",
"engines": {
"node": ">=24"
},
"dependencies": {
"@actions/core": "^3.0.0",
"node-fetch": "~2.7.0",
"semver": "^7.7.4"
},
"devDependencies": {
"@babel/preset-env": "^7.29.2",
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@vercel/ncc": "^0.38.4",
"babel-jest": "^30.2.0",
"eslint": "^10.1.0",
"eslint-plugin-jest": "^29.15.1",
"globals": "^17.4.0",
"jest": "^30.3.0",
"js-yaml": "^4.1.1",
"prettier": "3.8.1"
}
}