forked from SonarSource/sonar-scanner-azdo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3.08 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
94
95
96
97
98
99
100
101
{
"name": "sonar-scanner-vsts",
"version": "0.0.2-SNAPSHOT",
"repository": "SonarSource/sonar-scanner-vsts",
"license": "LGPL-3.0",
"devDependencies": {
"@types/fs-extra": "5.0.2",
"@types/jest": "24.0.17",
"@types/jest-when": "2.4.1",
"@types/node": "8.10.59",
"@types/request": "2.47.0",
"@types/semver": "5.5.0",
"@types/tmp": "0.0.33",
"@types/yargs": "13.0.2",
"dateformat": "3.0.3",
"del": "3.0.0",
"eslint": "5.16.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-promise": "3.7.0",
"event-stream": "3.3.4",
"fs-extra": "7.0.1",
"globby": "7.1.1",
"gulp": "4.0.2",
"gulp-artifactory-upload": "1.3.0",
"gulp-decompress": "2.0.2",
"gulp-download": "0.0.1",
"gulp-exec": "2.1.3",
"gulp-json-editor": "2.3.0",
"gulp-rename": "1.2.2",
"gulp-replace": "0.6.1",
"gulp-typescript": "4.0.2",
"gulp-util": "3.0.8",
"jest": "24.8.0",
"jest-when": "2.6.0",
"merge-stream": "2.0.0",
"prettier": "^2.0.5",
"request": "2.85.0",
"semver": "5.5.0",
"sonarqube-scanner": "2.5.0",
"tfx-cli": "0.7.11",
"tmp": "0.0.33",
"ts-jest": "24.0.2",
"typescript": "3.5.3",
"typescript-eslint-parser": "22.0.0",
"yargs": "11.0.0"
},
"scripts": {
"build": "./node_modules/.bin/gulp build",
"clean": "./node_modules/.bin/gulp clean",
"deploy": "./node_modules/.bin/gulp deploy",
"promote": "./node_modules/.bin/gulp promote",
"burgr": "./node_modules/.bin/gulp burgr",
"sonarqube": "./node_modules/.bin/gulp sonarqube",
"format": "./node_modules/.bin/prettier --write --list-different \"{common,extensions}/**/*.{js,ts}\"",
"format-check": "./node_modules/.bin/prettier --list-different \"{common,extensions}/**/*.{js,ts}\"",
"install-dep": "./node_modules/.bin/gulp npminstall",
"lint": "eslint --ext js,ts --quiet \"{common,extensions}/**/*.{js,ts}\"",
"lint-report": "eslint --ext js,ts -f json -o eslint-report.json \"{common,extensions}/**/*.{js,ts}\"",
"test-build": "./node_modules/.bin/gulp build:test",
"test": "./node_modules/.bin/jest",
"test-ci": "./node_modules/.bin/jest --coverage",
"ts-check": "./node_modules/.bin/tsc --noEmit",
"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"
},
"engines": {
"node": ">=6"
},
"jest": {
"clearMocks": true,
"collectCoverageFrom": [
"common/**/*.ts"
],
"coverageDirectory": "coverage",
"coverageReporters": [
"lcovonly",
"text"
],
"moduleFileExtensions": [
"ts",
"js"
],
"testPathIgnorePatterns": [
"<rootDir>/node_modules",
"<rootDir>/config",
"<rootDir>/build"
],
"testRegex": "(/__tests__/.*|\\-test)\\.ts$",
"testURL": "http://localhost/",
"transform": {
".(ts)$": "ts-jest"
}
},
"prettier": {
"printWidth": 100,
"singleQuote": false
},
"dependencies": {
"azure-pipelines-task-lib": "^2.9.5"
}
}