forked from actions-rs/clippy-check
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.14 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": "rust-clippy-check",
"version": "1.0.7",
"private": false,
"description": "Run clippy and annotate the diff with errors and warnings",
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/main.ts --minify",
"watch": "ncc build src/main.ts --watch --minify",
"test": "jest --passWithNoTests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions-rs/clippy-check.git"
},
"keywords": [
"actions",
"rust",
"cargo"
],
"author": "actions-rs",
"license": "MIT",
"bugs": {
"url": "https://github.com/actions-rs/clippy-check/issues"
},
"dependencies": {
"@actions-rs/core": "git+https://github.com/bp3d-actions/core.git",
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"string-argv": "^0.3.2"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.14.2",
"@vercel/ncc": "^0.38.1",
"jest": "^29.7.0",
"jest-circus": "^29.7.0",
"ts-jest": "^29.1.5",
"typescript": "^5.4.5"
}
}