forked from paambaati/codeclimate-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.89 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
56
57
58
59
{
"name": "codeclimate-action",
"version": "5.0.0",
"private": true,
"description": "Publish code coverage to Code Climate",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"test:only": "tape -r ts-node/register/transpile-only test/*.test.ts",
"test": "npm run test:only -- --no-only",
"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": "https://github.com/paambaati/codeclimate-action.git"
},
"keywords": [
"actions",
"codeclimate",
"quality",
"coverage"
],
"author": "GP <[email protected]>",
"license": "MIT",
"dependencies": {
"@actions/core": "1.10.0",
"@actions/exec": "1.1.1",
"@actions/github": "5.1.1",
"@actions/glob": "0.4.0",
"hook-std": "2.0.0",
"node-fetch": "2.6.12",
"nyc": "15.1.0",
"openpgp": "5.9.0"
},
"devDependencies": {
"@google/semantic-release-replace-plugin": "1.2.0",
"@openpgp/web-stream-tools": "0.0.13",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "10.0.1",
"@semantic-release/exec": "6.0.3",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "9.0.3",
"@semantic-release/release-notes-generator": "10.0.3",
"@types/node": "18.16.16",
"@types/node-fetch": "2.6.4",
"@types/sinon": "10.0.14",
"@types/tape": "4.13.4",
"nock": "13.3.1",
"prettier": "2.8.8",
"semantic-release-export-data": "1.0.1",
"sinon": "15.2.0",
"tape": "5.6.3",
"to-readable-stream": "2.1.0",
"ts-node": "10.9.1",
"typescript": "5.1.6"
}
}