forked from MatteoH2O1999/build-and-install-python
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.81 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 --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"
}
}