forked from paambaati/codeclimate-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.39 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
{
"name": "codeclimate-action",
"version": "2.7.5",
"private": true,
"description": "Publish code coverage to Code Climate",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"test": "tape -r ts-node/register/transpile-only test/*.test.ts",
"coverage": "nyc tape -r ts-node/register/transpile-only test/*.test.ts",
"format": "prettier --write src/*.ts test/*.ts",
"format:check": "prettier --check src/*.ts test/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paambaati/codeclimate-action.git"
},
"keywords": [
"actions",
"codeclimate",
"quality",
"coverage"
],
"author": "GP <me@httgp.com>",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.7",
"@actions/exec": "^1.0.4",
"@actions/github": "^4.0.0",
"@actions/glob": "^0.1.1",
"hook-std": "^2.0.0",
"node-fetch": "^2.6.1",
"nyc": "^15.1.0"
},
"devDependencies": {
"@types/node": "^14.14.12",
"@types/node-fetch": "^2.5.10",
"@types/sinon": "^9.0.9",
"@types/tape": "^4.13.0",
"nock": "^13.0.11",
"prettier": "^2.2.1",
"sinon": "^9.2.2",
"tape": "^5.2.2",
"to-readable-stream": "^2.1.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
}
}