-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.23 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
{
"name": "cargo-actions",
"version": "1.0.0",
"private": true,
"description": "Integration Rust Cargo with GitHub Actions",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"package": "ncc build --license licenses.txt",
"test": "jest",
"all": "yarn build && yarn format && yarn lint && yarn package && yarn test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/qRoC/cargo-actions.git"
},
"keywords": [
"actions",
"github",
"rust",
"cargo"
],
"author": "Andrii Savytskyi <contact@qroc.pro>",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10",
"@actions/exec": "^1.1",
"@actions/github": "^5.1"
},
"devDependencies": {
"@types/jest": "^29",
"@types/node": "^18",
"@typescript-eslint/parser": "^5",
"@vercel/ncc": "^0.36",
"eslint": "^8",
"eslint-plugin-github": "^4",
"eslint-plugin-jest": "^27",
"jest": "^29",
"jest-circus": "^29",
"js-yaml": "^4",
"nock": "^13",
"prettier": "^2",
"svg-element-attributes": "^2",
"ts-jest": "^29",
"typescript": "^5"
}
}