-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.1 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.1 KB
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
{
"name": "sonar-scanner-npm",
"version": "SNAPSHOT",
"homepage": "https://github.com/SonarSource/sonar-scanner-npm",
"author": {
"name": "SonarSource",
"email": "quality.web@sonarsource.com"
},
"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",
"dependencies": {
"adm-zip": "0.5.16",
"axios": "1.13.6",
"commander": "14.0.3",
"hpagent": "1.2.0",
"node-forge": "1.3.3",
"properties-file": "3.7.0",
"proxy-from-env": "1.1.0",
"semver": "7.7.4",
"slugify": "1.6.8",
"tar-stream": "3.1.8"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "1.0.2",
"@types/adm-zip": "0.5.8",
"@types/node": "24.12.0",
"@types/node-forge": "1.3.14",
"@types/proxy-from-env": "1.0.4",
"@types/semver": "7.7.1",
"@types/tar-stream": "3.1.4",
"@typescript-eslint/parser": "8.57.1",
"eslint": "10.0.3",
"eslint-plugin-sonarjs": "4.0.2",
"husky": "9.1.7",
"knip": "5.88.0",
"node-reporter-sonarqube": "1.0.3",
"nyc": "18.0.0",
"package-manifest-generator": "1.0.0-beta.4",
"prettier": "3.8.1",
"pretty-quick": "4.2.2",
"tsx": "4.21.0",
"typescript": "5.9.3"
},
"scripts": {
"build": "npm run license && tsc && pmg --entries=build/**/*.js --output=build/package.json",
"test": "nyc npm run test:run",
"test:run": "tsx --test --test-reporter=spec --test-reporter-destination=stdout --test-reporter=node-reporter-sonarqube --test-reporter-destination=test-report.xml test/unit/*.test.ts",
"test-integration": "cd test/integration && npm install && npm test",
"format": "prettier --write .",
"check-format": "prettier --list-different .",
"license": "eslint",
"precommit": "npm run license && pretty-quick --staged",
"prepare": "husky install .husky || true"
},
"prettier": {
"printWidth": 100,
"trailingComma": "all",
"singleQuote": true,
"arrowParens": "avoid",
"endOfLine": "lf"
}
}