123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- {
- "name": "build-and-install-python",
- "private": false,
- "description": "Build and Install action",
- "main": "dist/index.js",
- "scripts": {
- "build": "tsc --build --verbose",
- "format": "prettier --write **/*.ts",
- "format-check": "prettier --check **/*.ts",
- "lint": "eslint --ext .ts src/",
- "package": "ncc build ./lib/index.js --license licenses.txt && node ./.github/scripts/append_license",
- "test": "jest",
- "test-ci": "jest --reporters='@matteoh2o1999/github-actions-jest-reporter' --ci",
- "complete-build": "npm run build && npm run package"
- },
- "repository": {
- "type": "git",
- "url": "git+https://github.com/MatteoH2O1999/build-and-install-python.git"
- },
- "keywords": [
- "actions",
- "python",
- "build",
- "setup"
- ],
- "author": "Matteo Dell'Acqua",
- "license": "AGPL-3.0-or-later",
- "dependencies": {
- "@actions/artifact": "^1.1.1",
- "@actions/cache": "^3.2.1",
- "@actions/core": "^1.10.0",
- "@actions/exec": "^1.1.1",
- "@actions/github": "^5.1.1",
- "@actions/glob": "^0.4.0",
- "@actions/http-client": "^2.1.0",
- "@actions/io": "^1.1.3",
- "@actions/tool-cache": "^2.0.1",
- "find-process": "^1.4.7",
- "semver": "^7.5.2"
- },
- "devDependencies": {
- "@matteoh2o1999/github-actions-jest-reporter": "^2.0.0",
- "@types/node": "^20.3.1",
- "@typescript-eslint/parser": "^5.59.11",
- "@vercel/ncc": "^0.36.1",
- "axios": "^1.4.0",
- "eslint": "^8.43.0",
- "eslint-plugin-github": "^4.8.0",
- "eslint-plugin-jest": "^27.2.1",
- "jest": "^29.5.0",
- "js-yaml": "^4.1.0",
- "prettier": "^2.8.8",
- "ts-jest": "^29.1.0",
- "typescript": "^5.1.3"
- }
- }
|