-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.41 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
{
"name": "release-rust",
"publish": false,
"version": "0.0.1",
"description": "All-in-one action to build, optimise, tag, sign, and publish a Cargo-based Rust project.",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map --license LICENSE",
"test": "jest",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
},
"keywords": [],
"author": "Félix Saparelli <[email protected]> (https://passcod.name/)",
"license": "GPL-3.0",
"dependencies": {
"@actions/core": "^1.9.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.1.1",
"@actions/io": "^1.1.2",
"@actions/tool-cache": "^2.0.1",
"crates.io": "^2.2.2",
"glob": "^8.1.0",
"minimatch": "^5.0.1",
"semver": "^7.3.8",
"shell-quote": "^1.7.4",
"ssri": "^10.0.1",
"yup": "^1.0.0-beta.7"
},
"engines": {
"node": "^16.16.0"
},
"devDependencies": {
"@types/glob": "^8.0.1",
"@types/node": "^18.11.18",
"@types/shell-quote": "^1.7.1",
"@types/ssri": "^7.1.1",
"@typescript-eslint/parser": "^5.49.0",
"@vercel/ncc": "^0.36.0",
"eslint": "^8.32.0",
"eslint-plugin-github": "^4.3.2",
"eslint-plugin-jest": "^27.2.1",
"jest": "^29.4.0",
"js-yaml": "^4.1.0",
"prettier": "^2.8.3",
"ts-jest": "^29.0.5",
"typescript": "^4.8.3"
}
}