-
Notifications
You must be signed in to change notification settings - Fork 129
/
Copy pathpackage.json
77 lines (77 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
{
"name": "sonar-scanner-azdo",
"version": "0.0.2-SNAPSHOT",
"repository": "SonarSource/sonar-scanner-azdo",
"license": "LGPL-3.0",
"scripts": {
"build": "BUILD_MODE=production gulp",
"test-build": "gulp",
"generate-its": "ts-node its/generate.ts",
"test-its": "ts-node its/test.ts",
"install-its": "ts-node its/install.ts",
"clean": "gulp clean",
"upload": "gulp upload",
"promote": "gulp promote",
"sonarqube": "gulp sonarqube:scan",
"format": "prettier --write --list-different \"src/**/*.{js,ts}\"",
"format-check": "prettier --list-different \"src/**/*.{js,ts}\"",
"lint": "eslint --ext js,ts --quiet \"src/**/*.{js,ts}\"",
"lint-report": "eslint --ext js,ts -f json -o eslint-report.json \"src/**/*.{js,ts}\"",
"test": "./scripts/find-common-dirs.sh | xargs -0L1 npm test --prefix",
"test-ci": "./scripts/find-common-dirs.sh | xargs -0L1 npm run test-ci --prefix",
"find-dep": "f() { ./scripts/find-common-dirs.sh | xargs -I % -0 npm ls \"$1\" --prefix %; }; f",
"ts-check": "gulp build:typescript",
"validate": "npm run lint && npm run ts-check && npm run format-check && npm run test",
"validate-ci": "npm run lint-report && npm run ts-check && npm run format-check && npm run test-ci",
"cyclonedx-run": "cyclonedx-npm",
"cyclonedx": "gulp cyclonedx"
},
"devDependencies": {
"@cyclonedx/bom": "4.1.0",
"@types/fs-extra": "11.0.4",
"@types/jest": "29.5.14",
"@types/jest-when": "3.5.5",
"@types/node": "22.9.0",
"@types/yargs": "17.0.33",
"@typescript-eslint/parser": "8.13.0",
"dateformat": "4.6.3",
"esbuild": "0.24.0",
"eslint": "8.57.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-promise": "7.1.0",
"fancy-log": "2.0.0",
"fs-extra": "11.2.0",
"glob": "11.0.0",
"gulp": "4.0.2",
"gulp-artifactory-upload": "1.4.0",
"gulp-decompress": "3.0.0",
"gulp-download": "^0.0.1",
"gulp-exec": "5.0.0",
"gulp-file": "0.4.0",
"gulp-json-editor": "2.6.0",
"gulp-rename": "2.0.0",
"gulp-typescript": "5.0.1",
"jest": "29.7.0",
"jest-when": "3.6.0",
"map-stream": "0.1.0",
"merge-stream": "2.0.0",
"needle": "3.3.1",
"openpgp": "5.11.2",
"prettier": "3.3.3",
"rimraf": "6.0.1",
"semver": "7.6.3",
"sonarqube-scanner": "4.2.5",
"tfx-cli": "0.17.0",
"through2": "4.0.2",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typescript": "5.6.3",
"vinyl": "3.0.0",
"yaml": "2.6.0",
"yargs": "17.7.2"
},
"engines": {
"node": ">=6",
"npm": ">=8"
}
}