-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
56 lines (56 loc) · 1.83 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"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 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/cache": "^4.0.0",
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"@actions/io": "^1.1.3",
"@actions/tool-cache": "^2.0.1",
"find-process": "^1.4.7",
"semver": "^7.6.3",
"setup-python": "github:actions/setup-python#v5.3.0"
},
"devDependencies": {
"@matteoh2o1999/github-actions-jest-reporter": "^3.0.0",
"@stylistic/eslint-plugin-ts": "^2.12.1",
"@types/node": "^22.10.2",
"@types/semver": "^7.5.8",
"@typescript-eslint/parser": "^8.18.0",
"@vercel/ncc": "^0.38.3",
"axios": "^1.7.9",
"eslint": "^9.16.0",
"eslint-plugin-github": "^5.1.4",
"eslint-plugin-jest": "^28.9.0",
"jest": "^29.7.0",
"js-yaml": "^4.1.0",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2"
}
}