forked from bellingard/sonar-scanner-npm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@qiwi/sonarqube-scanner",
"alias": "@qiwi/sonar-scanner",
"description": "SonarQube/SonarCloud Scanner for the JavaScript world / QIWI fork to bring a bit more security",
"version": "1.4.3",
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/qiwi-forks/sonar-scanner-npm",
"author": {
"name": "Fabrice Bellingard",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/qiwi-forks/sonar-scanner-npm.git"
},
"bugs": {
"url": "https://github.com/qiwi-forks/sonar-scanner-npm/issues"
},
"license": "LGPL-3.0",
"main": "./src/index.js",
"bin": {
"sonar-scanner": "./src/bin/sonar-scanner"
},
"files": [
"src",
"hashes",
"LICENSE",
"README.md"
],
"engines": {
"node": ">= 16"
},
"dependencies": {
"decompress": "^4.2.1",
"extend": "3.0.2",
"fancy-log": "^2.0.0",
"lodash.get": "^4.4.2",
"lodash.uniq": "^4.5.0",
"mkdirp": "^1.0.4",
"node-downloader-helper": "^2.1.9",
"progress": "^2.0.3",
"read-pkg": "5.2.0",
"slugify": "^1.6.6"
},
"devDependencies": {
"coveralls": "^3.1.1",
"eslint": "^8.47.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"mocha": "^10.2.0",
"mocha-sonarqube-reporter": "^1.0.2",
"nyc": "^15.1.0"
},
"keywords": [
"sonarqube",
"sonarcloud",
"sonarqube-scanner",
"sonarqube-runner",
"sonar-scanner",
"sonar-runner"
],
"scripts": {
"build": "echo 'No build needed' && exit 0",
"test": "yarn lint && npx nyc mocha",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"ci": "npm run test && node ci-analysis.js"
}
}