forked from paambaati/codeclimate-action
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.19 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
{
"name": "codeclimate-action",
"version": "2.3.0",
"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",
"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 <[email protected]>",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.0",
"@actions/exec": "^1.0.1",
"node-fetch": "^2.6.0"
},
"devDependencies": {
"@types/nock": "^11.1.0",
"@types/node": "^12.12.11",
"@types/node-fetch": "^2.5.4",
"@types/tape": "^4.2.33",
"intercept-stdout": "^0.1.2",
"nock": "^11.7.0",
"prettier": "^1.19.1",
"tape": "^4.11.0",
"to-readable-stream": "^2.1.0",
"ts-node": "^8.5.2",
"typescript": "^3.7.2"
}
}