forked from bellingard/sonar-scanner-npm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.67 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
{
"name": "@etnetera/sonarqube-scanner",
"description": "Forked SonarQube/SonarCloud Scanner for the JavaScript world. Forked from: https://github.com/bellingard/sonar-scanner-npm",
"version": "2.8.4",
"homepage": "https://github.com/bellingard/sonar-scanner-npm",
"author": {
"name": "Fabrice Bellingard",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/etnetera/sonar-scanner-npm.git"
},
"bugs": {
"url": "https://github.com/etnetera/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": "^1.3.3",
"lodash.get": "^4.4.2",
"lodash.uniq": "^4.5.0",
"mkdirp": "^1.0.3",
"nodejs-file-downloader": "^4.10.1",
"progress": "^2.0.3",
"read-pkg": "2.0.0",
"slugify": "^1.4.0"
},
"devDependencies": {
"coveralls": "^3.0.11",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"mocha": "^7.1.0",
"mocha-sonarqube-reporter": "^1.0.1",
"nyc": "^15.0.0"
},
"keywords": [
"sonarqube",
"sonarcloud",
"sonarqube-scanner",
"sonarqube-runner",
"sonar-scanner",
"sonar-runner"
],
"scripts": {
"test-watch": "mocha -w -R spec",
"test": "npx nyc mocha",
"ci": "npm run test && node ci-analysis.js"
},
"publishConfig": {
"access": "public"
}
}