1
0
Files
setup-python/package.json
T

61 lines
1.8 KiB
JSON
Raw Normal View History

2019-08-20 10:27:52 -04:00
{
"name": "setup-python",
"version": "7.0.0",
"type": "module",
2019-08-20 10:27:52 -04:00
"private": true,
"description": "Setup python action",
2019-11-05 16:58:50 -05:00
"main": "dist/index.js",
2025-09-04 03:57:37 +01:00
"engines": {
"node": ">=24.0.0"
},
2019-08-20 10:27:52 -04:00
"scripts": {
2021-12-21 15:44:58 +03:00
"build": "ncc build -o dist/setup src/setup-python.ts && ncc build -o dist/cache-save src/cache-save.ts",
"format": "prettier --no-error-on-unmatched-pattern --write \"**/*.{ts,yml,yaml}\"",
"format-check": "prettier --no-error-on-unmatched-pattern --check \"**/*.{ts,yml,yaml}\"",
"lint": "eslint \"**/*.ts\"",
"lint:fix": "eslint \"**/*.ts\" --fix",
2021-11-17 13:31:22 +03:00
"release": "ncc build -o dist/setup src/setup-python.ts && ncc build -o dist/cache-save src/cache-save.ts && git add -f dist/",
"test": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js --runInBand --coverage"
2019-08-20 10:27:52 -04:00
},
"repository": {
"type": "git",
2019-09-24 13:03:43 -07:00
"url": "git+https://github.com/actions/setup-python.git"
2019-08-20 10:27:52 -04:00
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "GitHub",
"license": "MIT",
"dependencies": {
"@actions/cache": "^6.1.0",
"@actions/core": "^3.0.1",
"@actions/exec": "^3.0.0",
"@actions/glob": "^0.7.0",
"@actions/http-client": "^4.0.1",
"@actions/io": "^3.0.2",
"@actions/tool-cache": "^4.0.0",
2024-07-23 00:20:49 +05:30
"@iarna/toml": "^3.0.0",
"semver": "^7.8.5"
2019-08-20 10:27:52 -04:00
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@jest/globals": "^30.4.1",
"@types/node": "^24.10.1",
2025-04-22 11:04:22 -05:00
"@types/semver": "^7.7.0",
"@typescript-eslint/eslint-plugin": "^8.62.0",
"@typescript-eslint/parser": "^8.62.0",
"@vercel/ncc": "^0.44.0",
"eslint": "^10.5.0",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-jest": "^29.15.2",
"eslint-plugin-n": "^18.1.0",
"globals": "^17.7.0",
"jest": "^30.4.2",
"prettier": "^3.8.4",
"ts-jest": "^29.4.11",
"typescript": "^6.0.3"
2019-08-20 10:27:52 -04:00
}
}