0
1
Fork 0
setup-go/package.json

45 lines
1.1 KiB
JSON
Raw Normal View History

2019-06-24 21:05:39 +02:00
{
"name": "setup-go",
2019-08-01 15:19:30 +02:00
"version": "1.0.0",
2019-06-24 21:05:39 +02:00
"private": true,
"description": "setup go action",
"main": "lib/setup-go.js",
"scripts": {
2020-02-09 06:21:39 +01:00
"build": "tsc && ncc build",
2019-06-24 21:05:39 +02:00
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
2020-02-10 00:09:15 +01:00
"test": "jest --coverage",
2020-02-09 06:21:39 +01:00
"pre-checkin": "npm run format && npm run build && npm test"
2019-06-24 21:05:39 +02:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/setup-go.git"
},
"keywords": [
"actions",
"go",
"setup"
],
"author": "GitHub",
"license": "MIT",
"dependencies": {
2020-02-09 06:21:39 +01:00
"@actions/core": "^1.2.2",
"@actions/http-client": "^1.0.6",
2020-03-26 17:40:41 +01:00
"@actions/io": "^1.0.2",
2020-03-26 18:52:36 +01:00
"@actions/tool-cache": "^1.3.3",
2019-06-24 21:05:39 +02:00
"semver": "^6.1.1"
},
"devDependencies": {
"@types/jest": "^24.0.13",
"@types/node": "^12.0.4",
"@types/semver": "^6.0.0",
2020-02-09 06:21:39 +01:00
"@zeit/ncc": "^0.21.0",
2020-03-26 16:13:11 +01:00
"jest": "^25.2.1",
2019-06-24 21:05:39 +02:00
"jest-circus": "^24.7.1",
"nock": "^10.0.6",
2019-06-24 21:05:39 +02:00
"prettier": "^1.17.1",
"ts-jest": "^24.0.2",
"typescript": "^3.5.1"
}
}