forked from actions-rs/grcov
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1.43 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
53
54
55
{
"name": "rust-grcov",
"version": "0.2.0",
"private": false,
"description": "Collect and aggregate code coverage information with the Mozilla grcov tool",
"main": "lib/main.js",
"directories": {
"lib": "lib",
"test": "__tests__"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"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/alekitto/grcov.git"
},
"keywords": [
"actions",
"rust",
"grcov",
"coverage"
],
"author": "actions-rs",
"license": "MIT",
"bugs": {
"url": "https://github.com/alekitto/grcov/issues"
},
"dependencies": {
"@actions-rs/core": "^0.1.5",
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/io": "^1.1.3",
"@iarna/toml": "^2.2.5",
"archiver": "^5.3.1",
"fast-glob": "^3.2.12",
"js-yaml": "^4.1.0",
"npm-check-updates": "^16.10.12",
"string-argv": "^0.3.2"
},
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/node": "^18.16.12",
"@vercel/ncc": "^0.36.1",
"jest": "^29.5.0",
"jest-circus": "^29.5.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
}
}