|
1 | | -{ |
2 | | - "name": "setup-go", |
3 | | - "version": "5.0.0", |
4 | | - "private": true, |
5 | | - "description": "setup go action", |
6 | | - "main": "lib/setup-go.js", |
7 | | - "scripts": { |
8 | | - "build": "tsc && ncc build -o dist/setup src/setup-go.ts && ncc build -o dist/cache-save src/cache-save.ts", |
9 | | - "format": "prettier --no-error-on-unmatched-pattern --config ./.prettierrc.js --write \"**/*.{ts,yml,yaml}\"", |
10 | | - "format-check": "prettier --no-error-on-unmatched-pattern --config ./.prettierrc.js --check \"**/*.{ts,yml,yaml}\"", |
11 | | - "lint": "eslint --config ./.eslintrc.js \"**/*.ts\"", |
12 | | - "lint:fix": "eslint --config ./.eslintrc.js \"**/*.ts\" --fix", |
13 | | - "test": "jest --coverage", |
14 | | - "pre-checkin": "npm run format && npm run lint:fix && npm run build && npm test" |
15 | | - }, |
16 | | - "repository": { |
17 | | - "type": "git", |
18 | | - "url": "git+https://github.com/actions/setup-go.git" |
19 | | - }, |
20 | | - "keywords": [ |
21 | | - "actions", |
22 | | - "go", |
23 | | - "setup" |
24 | | - ], |
25 | | - "author": "GitHub", |
26 | | - "license": "MIT", |
27 | | - "dependencies": { |
28 | | - "@actions/cache": "^4.0.3", |
29 | | - "@actions/core": "^1.11.1", |
30 | | - "@actions/exec": "^1.1.1", |
31 | | - "@actions/glob": "^0.5.0", |
32 | | - "@actions/http-client": "^2.2.1", |
33 | | - "@actions/io": "^1.0.2", |
34 | | - "@actions/tool-cache": "^2.0.2", |
35 | | - "semver": "^7.6.3" |
36 | | - }, |
37 | | - "devDependencies": { |
38 | | - "@types/jest": "^29.5.14", |
39 | | - "@types/node": "^20.11.28", |
40 | | - "@types/semver": "^7.5.8", |
41 | | - "@typescript-eslint/eslint-plugin": "^8.31.1", |
42 | | - "@typescript-eslint/parser": "^8.35.1", |
43 | | - "@vercel/ncc": "^0.38.1", |
44 | | - "eslint": "^8.57.0", |
45 | | - "eslint-config-prettier": "^10.0.1", |
46 | | - "eslint-plugin-jest": "^29.0.1", |
47 | | - "eslint-plugin-node": "^11.1.0", |
48 | | - "jest": "^29.7.0", |
49 | | - "jest-circus": "^29.7.0", |
50 | | - "nock": "^10.0.6", |
51 | | - "prettier": "^2.8.4", |
52 | | - "ts-jest": "^29.3.2", |
53 | | - "typescript": "^5.8.3" |
54 | | - } |
55 | | -} |
| 1 | +{ |
| 2 | + "name": "setup-go", |
| 3 | + "version": "5.0.0", |
| 4 | + "private": true, |
| 5 | + "description": "setup go action", |
| 6 | + "main": "lib/setup-go.js", |
| 7 | + "scripts": { |
| 8 | + "build": "tsc && ncc build -o dist/setup src/setup-go.ts && ncc build -o dist/cache-save src/cache-save.ts", |
| 9 | + "format": "prettier --no-error-on-unmatched-pattern --config ./.prettierrc.js --write \"**/*.{ts,yml,yaml}\"", |
| 10 | + "format-check": "prettier --no-error-on-unmatched-pattern --config ./.prettierrc.js --check \"**/*.{ts,yml,yaml}\"", |
| 11 | + "lint": "eslint --config ./.eslintrc.js \"**/*.ts\"", |
| 12 | + "lint:fix": "eslint --config ./.eslintrc.js \"**/*.ts\" --fix", |
| 13 | + "test": "jest --coverage", |
| 14 | + "pre-checkin": "npm run format && npm run lint:fix && npm run build && npm test" |
| 15 | + }, |
| 16 | + "repository": { |
| 17 | + "type": "git", |
| 18 | + "url": "git+https://github.com/actions/setup-go.git" |
| 19 | + }, |
| 20 | + "keywords": [ |
| 21 | + "actions", |
| 22 | + "go", |
| 23 | + "setup" |
| 24 | + ], |
| 25 | + "author": "GitHub", |
| 26 | + "license": "MIT", |
| 27 | + "dependencies": { |
| 28 | + "@actions/cache": "^4.0.3", |
| 29 | + "@actions/core": "^1.11.1", |
| 30 | + "@actions/exec": "^1.1.1", |
| 31 | + "@actions/glob": "^0.5.0", |
| 32 | + "@actions/http-client": "^2.2.1", |
| 33 | + "@actions/io": "^1.0.2", |
| 34 | + "@actions/tool-cache": "^2.0.2", |
| 35 | + "semver": "^7.6.3" |
| 36 | + }, |
| 37 | + "devDependencies": { |
| 38 | + "@types/jest": "^29.5.14", |
| 39 | + "@types/node": "^20.11.28", |
| 40 | + "@types/semver": "^7.5.8", |
| 41 | + "@typescript-eslint/eslint-plugin": "^8.31.1", |
| 42 | + "@typescript-eslint/parser": "^8.35.1", |
| 43 | + "@vercel/ncc": "^0.38.1", |
| 44 | + "eslint": "^8.57.0", |
| 45 | + "eslint-config-prettier": "^10.0.1", |
| 46 | + "eslint-plugin-jest": "^29.0.1", |
| 47 | + "eslint-plugin-node": "^11.1.0", |
| 48 | + "jest": "^29.7.0", |
| 49 | + "jest-circus": "^29.7.0", |
| 50 | + "nock": "^10.0.6", |
| 51 | + "prettier": "^2.8.4", |
| 52 | + "ts-jest": "^29.3.2", |
| 53 | + "typescript": "^5.8.3" |
| 54 | + } |
| 55 | +} |
0 commit comments