-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 2.67 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
{
"name": "azure-devops-pr-commentator",
"version": "1.0.0",
"description": "",
"private": true,
"main": "index.js",
"scripts": {
"prepare": "husky install",
"build": "npm-run-all build:prepare build:copy-to-dist build:install-deps",
"build-dev": "npm-run-all build:bump-task-dev build build:tfx-dev",
"build:prepare": "rimraf ./.task ./bin && tsc --project tsconfig.package.json",
"build:copy-to-dist": "cpy task.json package.json package-lock.json ./.task && cpy \"./bin/**/*.js\" ./.task",
"build:install-deps": "cd ./.task && npm clean-install --omit=dev --ignore-scripts",
"build:bump-task-dev": "azp-bump --indent 4 task.json",
"build:tfx-dev": "tfx extension create --manifests vss-extension.json vss-extension.dev.json --rev-version --publisher xerillio",
"test": "mocha -r ts-node/register -r mocha-suppress-logs './tests/**/*.test.ts'",
"test-sonar": "mocha -r ts-node/register -r mocha-suppress-logs -R mocha-reporter-sonarqube -O filename=test-report.sonar.xml './tests/**/*.test.ts'",
"coverage": "c8 npm test",
"coverage-html": "c8 --reporter=html npm test",
"coverage-sonar": "c8 --reporter=lcovonly npm run test-sonar",
"lint": "eslint . --ext .ts -f friendly",
"lint-fix": "eslint . --ext .ts -f friendly --fix"
},
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/md5": "^2.3.2",
"@types/mocha": "^10.0.1",
"@types/node": "^18.14.0",
"@types/q": "^1.5.5",
"@types/sinon": "^10.0.13",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"azp-bump": "^2.0.15",
"c8": "^7.13.0",
"chai": "^4.3.7",
"cpy-cli": "^4.2.0",
"eslint": "^8.34.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-formatter-friendly": "github:Xerillio/eslint-friendly-formatter#5b12360ea34f934941a169f48dec358befc4dcb6",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.0",
"mocha": "^10.2.0",
"mocha-reporter-sonarqube": "^2.0.0",
"mocha-suppress-logs": "^0.3.1",
"npm-run-all": "^4.1.5",
"rewiremock": "^3.14.5",
"rimraf": "^4.1.2",
"sinon": "^15.0.1",
"sync-request": "^6.1.0",
"tfx-cli": "^0.12.0",
"ts-node": "^10.9.1",
"ts-sinon": "^2.0.2",
"typescript": "^4.9.5"
},
"dependencies": {
"azure-devops-node-api": "^12.0.0",
"azure-pipelines-task-lib": "^4.2.0",
"md5": "^2.3.0",
"minimatch": "^6.2.0"
}
}