forked from actions-rs/clippy-check
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.05 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
{
"name": "rs-clippy-check",
"version": "4.0.0",
"private": false,
"description": "Run clippy and annotate the diff with errors and warnings",
"main": "dist/index.js",
"scripts": {
"all": "npm run build && npm run test",
"build": "ncc build src/main.ts --minify",
"format": "prettier --write 'src/**/*.ts' '__tests__/**/*.ts'",
"watch": "ncc build src/main.ts --watch --minify",
"test": "jest -c jest.config.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/clechasseur/rs-clippy-check.git"
},
"keywords": [
"actions",
"rust",
"cargo"
],
"author": "clechasseur",
"license": "MIT",
"bugs": {
"url": "https://github.com/clechasseur/rs-clippy-check/issues"
},
"dependencies": {
"@clechasseur/rs-actions-core": "^5.0.0",
"string-argv": "^0.3.2"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^20.17.12",
"@vercel/ncc": "^0.38.3",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"typescript": "^5.7.3"
}
}