-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.83 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
{
"name": "node-reporter-sonarqube",
"description": "Node test reporter for SonarQube",
"version": "1.0.1",
"type": "module",
"exports": "./dist/lib/index.mjs",
"scripts": {
"build": "tsc",
"lint": "eslint -f gha .",
"typecheck": "tsc --noEmit",
"test": "node --import=./loader.mjs --test --test-reporter=node-reporter-gha --test-reporter-destination=stdout --test-reporter=spec --test-reporter-destination=stdout test/unit/*.spec.mts && node --import=./loader.mjs test/integration/index.spec.mts",
"test:coverage": "c8 npm test",
"test:sonarqube": "c8 node --import=./loader.mjs --test-reporter=./lib/loader.mjs --test-reporter-destination=test-report.xml --test-reporter=spec --test-reporter-destination=stdout --test test/unit/*.spec.mts",
"prepack": "npm run build"
},
"keywords": [
"test-reporter",
"node-reporter",
"sonarqube",
"sonarcloud"
],
"files": [
"./dist/lib/*.mjs",
"./dist/lib/*.d.mts",
"./dist/lib/*.mjs.map"
],
"typings": "./dist/lib/index.d.mts",
"author": "Volodymyr Kolesnykov <volodymyr@wildwolf.name> (https://wildwolf.name/)",
"license": "MIT",
"devDependencies": {
"@myrotvorets/buffer-stream": "^1.4.0",
"@myrotvorets/eslint-config-myrotvorets-ts": "^3.0.0",
"@types/node": "^22.5.2",
"c8": "^10.1.2",
"eslint-formatter-gha": "^1.5.0",
"node-reporter-gha": "^2.0.3",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"directories": {
"lib": "lib",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sjinks/node-reporter-sonarqube.git"
},
"bugs": {
"url": "https://github.com/sjinks/node-reporter-sonarqube/issues"
},
"homepage": "https://github.com/sjinks/node-reporter-sonarqube#readme",
"publishConfig": {
"access": "public",
"provenance": true
}
}