-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.35 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.35 KB
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
56
57
58
{
"name": "coverage-action",
"version": "1.0.0",
"description": "An action for publishing coverage to HotLoop",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "mocha --config test/support/unit.yaml",
"coverage": "nyc npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hotloop/coverage-action.git"
},
"keywords": [
"HotLoop",
"coverage",
"github",
"action"
],
"author": "hotloop.io",
"license": "ISC",
"bugs": {
"url": "https://github.com/hotloop/coverage-action/issues"
},
"homepage": "https://github.com/hotloop/coverage-action#readme",
"nyc": {
"reporter": [
"lcov"
]
},
"devDependencies": {
"@types/chai": "4.2.14",
"@types/chai-as-promised": "7.1.3",
"@types/mocha": "8.2.0",
"@types/node": "14.14.19",
"@types/sinon": "9.0.10",
"@types/sinon-chai": "3.2.5",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"mocha": "8.2.1",
"nyc": "15.1.0",
"sinon": "9.2.2",
"sinon-chai": "3.5.0",
"ts-node": "9.1.1",
"tslint": "6.1.3",
"tslint-config-standard": "9.0.0",
"typescript": "4.1.3"
},
"dependencies": {
"@actions/core": "1.2.6",
"@actions/github": "4.0.0",
"@actions/glob": "0.1.1",
"@hotloop/hotloop-sdk": "2.0.2",
"axios": "0.21.1"
}
}