-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 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
{
"name": "rust-code-analysis-check",
"version": "0.0.1",
"private": false,
"description": "Run rust-code-analysis-cli and annotate the metric results",
"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/Luni-4/rust-code-analysis-check.git"
},
"keywords": [
"actions",
"rust",
"rust-code-analysis",
"rust-code-analysis-cli"
],
"author": "Luni-4",
"license": "MIT",
"bugs": {
"url": "https://github.com/Luni-4/rust-code-analysis-check/issues"
},
"dependencies": {
"@actions/core": "^1.2.4",
"@actions/github": "^3.0.0",
"@actions/io": "^1.0.2",
"@actions/exec": "^1.0.4",
"npm-check-updates": "^7.0.1",
"string-argv": "^0.3.1"
},
"devDependencies": {
"@types/jest": "^26.0.0",
"@types/node": "^14.0.13",
"@vercel/ncc": "^0.24.1",
"jest": "^26.0.1",
"jest-circus": "^26.0.1",
"ts-jest": "^26.1.0",
"typescript": "^3.9.5"
}
}