forked from actions-rs/grcov
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.35 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
51
52
{
"name": "rust-grcov",
"version": "0.1.5",
"private": false,
"description": "Collect and aggregate code coverage information with the Mozilla grcov tool",
"main": "lib/main.js",
"directories": {
"lib": "lib",
"test": "__tests__"
},
"scripts": {
"build": "ncc build src/main.ts --minify",
"watch": "ncc build src/main.ts --watch",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions-rs/grcov.git"
},
"keywords": [
"actions",
"rust",
"grcov",
"coverage"
],
"author": "actions-rs",
"license": "MIT",
"bugs": {
"url": "https://github.com/actions-rs/grcov/issues"
},
"dependencies": {
"@actions-rs/core": "^0.0.9",
"@actions/core": "^1.2.3",
"@actions/exec": "^1.0.3",
"@actions/io": "^1.0.2",
"@iarna/toml": "^2.2.3",
"archiver": "^3.1.1",
"fast-glob": "^3.2.2",
"js-yaml": "^3.13.1",
"npm-check-updates": "^4.1.2",
"string-argv": "^0.3.1"
},
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/node": "^13.11.1",
"@zeit/ncc": "^0.22.1",
"jest": "^25.3.0",
"jest-circus": "^25.3.0",
"ts-jest": "^25.3.1",
"typescript": "^3.8.3"
}
}