forked from bellingard/sonar-scanner-npm
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
93 lines (93 loc) · 2.56 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "sonarqube-scanner",
"description": "SonarQube/SonarCloud Scanner for the JavaScript world",
"version": "4.2.6",
"homepage": "https://github.com/SonarSource/sonar-scanner-npm",
"author": {
"name": "Fabrice Bellingard",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SonarSource/sonar-scanner-npm.git"
},
"bugs": {
"url": "https://github.com/SonarSource/sonar-scanner-npm/issues"
},
"license": "LGPL-3.0-only",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"bin": {
"sonar-scanner": "bin/sonar-scanner"
},
"engines": {
"node": ">= 18"
},
"dependencies": {
"adm-zip": "0.5.12",
"axios": "1.7.7",
"commander": "12.0.0",
"fs-extra": "11.2.0",
"hpagent": "1.2.0",
"jest-sonar-reporter": "2.0.0",
"node-forge": "^1.3.1",
"properties-file": "3.5.4",
"proxy-from-env": "^1.1.0",
"semver": "7.6.0",
"slugify": "1.6.6",
"tar-stream": "3.1.7"
},
"devDependencies": {
"@types/adm-zip": "0.5.5",
"@types/fs-extra": "11.0.4",
"@types/jest": "29.5.12",
"@types/node-forge": "^1.3.11",
"@types/proxy-from-env": "1.0.4",
"@types/semver": "7.5.8",
"@types/sinon": "17.0.3",
"@types/tar-stream": "3.1.3",
"@typescript-eslint/parser": "7.4.0",
"axios-mock-adapter": "1.22.0",
"chai": "4.4.1",
"eslint": "8.57.0",
"eslint-plugin-notice": "0.9.10",
"husky": "9.0.11",
"jest": "29.7.0",
"prettier": "3.2.5",
"pretty-quick": "4.0.0",
"rimraf": "5.0.5",
"sinon": "19.0.2",
"ts-jest": "29.1.2",
"typescript": "5.4.3"
},
"keywords": [
"sonarqube",
"sonarcloud",
"sonarqube-scanner",
"sonarqube-runner",
"sonar-scanner",
"sonar-runner"
],
"scripts": {
"build": "npm ci && npm run ts-build && npm run check-format && npm run license && npm test && cd tools/orchestrator && npm run build",
"ts-build": "tsc && node scripts/fix-comments.js",
"test": "jest --coverage",
"test-integration": "cd test/integration && npm test",
"format": "prettier --write .",
"check-format": "prettier --list-different .",
"license": "eslint --ext js,ts src test tools scripts .",
"license-fix": "eslint --fix --ext js,ts src test tools scripts .",
"precommit": "pretty-quick --staged",
"prepare": "husky install .husky || true"
},
"prettier": {
"printWidth": 100,
"trailingComma": "all",
"singleQuote": true,
"arrowParens": "avoid"
},
"files": [
"build/**",
"bin/**"
]
}