setup-python/package.json

50 lines
1.1 KiB
JSON
Raw Normal View History

2019-08-20 14:27:52 +00:00
{
"name": "setup-python",
2020-05-21 11:18:04 +00:00
"version": "2.0.1",
2019-08-20 14:27:52 +00:00
"private": true,
"description": "Setup python action",
2019-11-05 21:58:50 +00:00
"main": "dist/index.js",
2019-08-20 14:27:52 +00:00
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"release": "ncc build src/setup-python.ts && git add -f dist/",
2019-08-20 14:27:52 +00:00
"test": "jest"
},
"repository": {
"type": "git",
2019-09-24 20:03:43 +00:00
"url": "git+https://github.com/actions/setup-python.git"
2019-08-20 14:27:52 +00:00
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "GitHub",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.3",
"semver": "^7.1.3"
2019-08-20 14:27:52 +00:00
},
"devDependencies": {
"@actions/io": "^1.0.2",
2020-05-20 13:35:09 +00:00
"@actions/tool-cache": "^1.5.5",
"@types/jest": "^25.1.4",
"@types/node": "^12.12.31",
"@types/semver": "^7.1.0",
"@zeit/ncc": "^0.22.0",
"husky": "^4.2.3",
"jest": "^25.1.0",
"jest-circus": "^25.1.0",
"prettier": "^2.0.2",
"ts-jest": "^25.2.1",
"typescript": "^3.8.3"
2019-08-20 14:27:52 +00:00
},
"husky": {
"skipCI": true,
"hooks": {
"pre-commit": "npm run build && npm run format-check"
2019-08-20 14:27:52 +00:00
}
}
}