forked from actions-rs/tarpaulin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.31 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
{
"name": "rust-tarpaulin",
"version": "0.1.3",
"private": false,
"description": "Code coverage report with Tarpaulin",
"main": "lib/main.js",
"directories": {
"lib": "lib",
"test": "__tests__"
},
"scripts": {
"build": "ncc build src/main.ts --minify",
"watch": "ncc build src/main.ts --watch --source-map",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions-rs/tarpaulin.git"
},
"keywords": [
"actions",
"rust",
"tarpaulin"
],
"author": "actions-rs",
"license": "MIT",
"bugs": {
"url": "https://github.com/actions-rs/tarpaulin/issues"
},
"dependencies": {
"@actions-rs/core": "0.1.5",
"@actions/core": "^1.2.6",
"@actions/exec": "^1.0.4",
"@actions/io": "^1.0.2",
"@actions/tool-cache": "^1.6.0",
"@types/node-fetch": "^2.5.7",
"node-fetch": "^2.6.1",
"npm-check-updates": "^10.0.0",
"string-argv": "^0.3.1"
},
"devDependencies": {
"@types/jest": "^26.0.15",
"@types/node": "^14.14.7",
"@zeit/ncc": "^0.22.3",
"jest": "^26.6.3",
"jest-circus": "^26.6.3",
"ts-jest": "^26.4.4",
"typescript": "^4.0.5"
}
}