This repository has been archived by the owner on Mar 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 78
/
package.json
62 lines (62 loc) · 1.55 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
{
"name": "sonarqube-scanner",
"description": "SonarQube/SonarCloud Scanner for the JavaScript world",
"version": "2.9.1",
"homepage": "https://github.com/bellingard/sonar-scanner-npm",
"author": {
"name": "Fabrice Bellingard",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bellingard/sonar-scanner-npm.git"
},
"bugs": {
"url": "https://github.com/bellingard/sonar-scanner-npm/issues"
},
"license": "LGPL-3.0",
"main": "src/index.js",
"bin": {
"sonar-scanner": "src/bin/sonar-scanner"
},
"engines": {
"node": ">= 0.10"
},
"dependencies": {
"decompress": "^4.2.1",
"extend": "3.0.2",
"fancy-log": "^2.0.0",
"https-proxy-agent": "^5.0.1",
"lodash.get": "^4.4.2",
"lodash.uniq": "^4.5.0",
"mkdirp": "^1.0.4",
"node-downloader-helper": "^2.1.5",
"progress": "^2.0.3",
"read-pkg": "2.0.0",
"slugify": "^1.6.5"
},
"devDependencies": {
"coveralls": "^3.1.1",
"eslint": "^8.29.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^4.1.0",
"mocha": "^10.1.0",
"mocha-sonarqube-reporter": "^1.0.2",
"nyc": "^15.1.0"
},
"keywords": [
"sonarqube",
"sonarcloud",
"sonarqube-scanner",
"sonarqube-runner",
"sonar-scanner",
"sonar-runner"
],
"scripts": {
"test": "npx nyc mocha",
"ci": "npm run test && node ci-analysis.js"
}
}