forked from soprasteria/sonar-report
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 962 Bytes
/
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
{
"name": "sonarflex",
"version": "1.0.0",
"description": "SonarQube reporting tool for improved code analysis",
"main": "index.js",
"author": "SnickerSec",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/snickersec/sonarflex.git"
},
"keywords": [
"sonar",
"report",
"analysis"
],
"bin": {
"sonarflex": "./cli.js"
},
"exports": "./index.js",
"scripts": {
"test": "mocha -R mocha-lcov-reporter > coverage.lcov",
"coverage": "nyc mocha"
},
"type": "module",
"dependencies": {
"commander": "^12.0.0",
"ejs": "^3.1.10",
"got": "^14.4.5",
"hpagent": "^1.2.0",
"properties-file": "^3.5.4",
"proxy-from-env": "^1.1.0",
"semver": "^7.6.0"
},
"devDependencies": {
"mocha": "^10.3.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.1.0"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=14 <=20"
}
}