forked from paambaati/codeclimate-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.81 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
{
"name": "codeclimate-action",
"version": "6.0.0",
"private": true,
"description": "Publish code coverage to Code Climate",
"main": "lib/main.js",
"packageManager": "[email protected]",
"scripts": {
"build": "tsc",
"test": "cross-env NODE_OPTIONS=\"--no-warnings\" tap run --disable-coverage",
"test:only": "pnpm run test --only",
"coverage": "pnpm run test --no-disable-coverage --allow-incomplete-coverage --coverage-report=lcovonly",
"coverage:html": "pnpm run coverage --coverage-report=html",
"biome:ci": "biome ci ./",
"format:check": "biome format ./",
"format": "biome format --write ./",
"lint:check": "biome lint ./",
"lint": "biome lint --apply ./",
"lint:unsafe": "biome lint --apply-unsafe ./"
},
"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.1",
"@actions/exec": "1.1.1",
"@actions/github": "6.0.0",
"@actions/glob": "0.4.0",
"hook-std": "2.0.0",
"node-fetch": "2.7.0",
"openpgp": "5.11.1"
},
"devDependencies": {
"@biomejs/biome": "1.7.1",
"@openpgp/web-stream-tools": "0.1.1",
"@tapjs/test": "1.4.2",
"@types/node": "20.12.7",
"@types/node-fetch": "2.6.11",
"@types/sinon": "17.0.3",
"@types/which": "3.0.3",
"cross-env": "7.0.3",
"nock": "13.5.4",
"sinon": "17.0.1",
"tap": "18.7.2",
"to-readable-stream": "2.1.0",
"typescript": "5.4.5",
"which": "4.0.0"
}
}