-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 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
42
{
"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": "0.1.6",
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"npm-check-updates": "^16.4.3",
"string-argv": "^0.3.1"
},
"devDependencies": {
"@types/jest": "^29.2.3",
"@types/node": "^18.11.9",
"@zeit/ncc": "^0.22.3",
"jest": "^29.3.1",
"jest-circus": "^29.3.1",
"ts-jest": "^29.0.3",
"typescript": "^4.9.3"
}
}