-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.61 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.61 KB
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
{
"name": "setup-rust",
"private": false,
"description": "Setup rust in your github actions workflow",
"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/setup-rust.git"
},
"keywords": [
"actions",
"rust",
"setup"
],
"author": "Matteo Dell'Acqua",
"license": "AGPL-3.0-or-later",
"dependencies": {
"@actions/cache": "^5.0.5",
"@actions/core": "^2.0.3",
"@actions/exec": "^2.0.0",
"@actions/io": "^2.0.0",
"@actions/tool-cache": "^3.0.1"
},
"devDependencies": {
"@matteoh2o1999/github-actions-jest-reporter": "^4.0.0",
"@stylistic/eslint-plugin": "^5.7.1",
"@types/node": "^25.2.1",
"@typescript-eslint/parser": "^8.54.0",
"@vercel/ncc": "^0.38.4",
"axios": "^1.13.4",
"eslint": "^9.39.2",
"eslint-plugin-github": "^6.0.0",
"eslint-plugin-jest": "^29.12.2",
"jest": "^30.2.0",
"js-yaml": "^4.1.1",
"prettier": "^3.8.1",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3"
}
}