-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathpackage.json
47 lines (47 loc) · 1.86 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
{
"name": "@qodana/vsts",
"version": "1.0.0",
"description": "Qodana for Azure Pipelines extension",
"main": "azure.js",
"scripts": {
"lint": "prettier --write '**/*.ts' && eslint --fix **/*.ts -c ../.github/linters/.eslintrc.yml",
"test": "jest --config jest.config.js",
"bump-dev": "jq '.version |= (split(\".\") | .[2] = (. [2]| tonumber + 1 | tostring) | join(\".\"))' vss-extension.dev.json > tmp.json && mv tmp.json vss-extension.dev.json\n",
"package": "npm run bump-dev && cd QodanaScan && npm ci && cd .. && ../node_modules/.bin/esbuild lib/main.js --platform=node --bundle --outfile=QodanaScan/index.js --target=node16 --external:shelljs --external:azure-pipelines-task-lib",
"readme": "cp ../.github/md/azure.md README.md && curl -sS https://raw.githubusercontent.com/JetBrains/Qodana/2022.2/topics/azure-pipelines.md >> README.md && cat ../.github/md/tracker.md >> README.md",
"azure": "tfx extension create --manifests vss-extension.json",
"azure-dev": "tfx extension create --manifests vss-extension.dev.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JetBrains/qodana-action.git"
},
"keywords": [
"actions",
"code-quality",
"static-analysis",
"qodana"
],
"author": "JetBrains",
"license": "Apache-2.0",
"dependencies": {
"azure-devops-node-api": "^14.1.0",
"azure-pipelines-task-lib": "^4.17.3",
"azure-pipelines-tasks-utility-common": "^3.246.0",
"azure-pipelines-tool-lib": "^2.0.8",
"@types/sarif": "^2.1.7"
},
"devDependencies": {
"@types/node": "^22.10.5",
"@typescript-eslint/parser": "^8.19.1",
"esbuild": "0.24.2",
"eslint": "^8.57.1",
"eslint-plugin-jest": "^28.10.0",
"jest": "^29.7.0",
"js-yaml": "^4.1.0",
"prettier": "3.4.2",
"sync-request": "^6.1.0",
"ts-jest": "^29.2.5",
"typescript": "^5.7.3"
}
}