-
Notifications
You must be signed in to change notification settings - Fork 63
/
package.json
67 lines (67 loc) · 1.87 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
60
61
62
63
64
65
66
67
{
"name": "codeclimate-action",
"version": "9.0.0",
"private": true,
"description": "Publish code coverage to Code Climate",
"type": "module",
"main": "lib/main.js",
"scripts": {
"build": "tsup --config tsup.config.ts",
"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 --fix",
"lint:check": "biome lint",
"lint": "biome lint --fix",
"lint:unsafe": "biome lint --fix --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.5.0",
"arch": "3.0.0",
"hook-std": "3.0.0",
"node-fetch": "3.3.2",
"openpgp": "5.11.2"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@openpgp/web-stream-tools": "0.1.3",
"@swc/core": "1.7.42",
"@tapjs/tsx": "3.0.0",
"@tsconfig/node20": "20.1.4",
"@tsconfig/strictest": "2.0.5",
"@types/node": "20.16.1",
"@types/node-fetch": "2.6.11",
"@types/sinon": "17.0.3",
"@types/which": "3.0.4",
"c8": "10.1.2",
"cross-env": "7.0.3",
"into-stream": "8.0.1",
"nock": "13.5.5",
"sinon": "18.0.0",
"tap": "21.0.1",
"tsimp": "2.0.11",
"tsup": "8.3.5",
"typescript": "5.6.3",
"which": "4.0.0"
},
"packageManager": "[email protected]",
"$schema": "https://json.schemastore.org/package"
}