-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.58 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.58 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
{
"name": "Teamscale-AzureDevOps-Extension",
"version": "1.5.2",
"description": "Teamscale integration into Azure DevOps",
"main": "index.js",
"scripts": {
"replace": "echo fixes https://github.com/Microsoft/vss-web-extension-sdk/issues/112; sed -i '/^\\s*nodeType: number;$/d' node_modules/vss-web-extension-sdk/typings/vss.d.ts",
"compileTypeScript": "npx tsc && cd reportUploadTask && npm run compile",
"restore": "npm ci && cd reportUploadTask && npm run restore",
"build": "npm run restore && npm run replace && npm run compileTypeScript",
"pruneDepsUploadTask": "cd reportUploadTask && npm prune --production && cd ..",
"package": "npm run build && npm run pruneDepsUploadTask && npx tfx extension create --output-path ./deployment/",
"publish": "npm run build && npm run pruneDepsUploadTask && npx tfx extension publish --output-path deployment --token $(node scripts/cat.js token)",
"test": "cd reportUploadTask && npm run test"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/cqse/Teamscale-AzureDevOps-Extension.git"
},
"devDependencies": {
"shelljs": "^0.10.0",
"tfx-cli": "^0.23.1",
"typescript": "^5.9.3"
},
"dependencies": {
"@types/chosen-js": "^1.8.6",
"chosen-js": "^1.8.7",
"jquery": "^4.0.0",
"jquery-ui-dist": "^1.13.3",
"vss-web-extension-sdk": "^5.141.0"
},
"overrides": {
"async": "^3.2.6",
"minimatch": "^10.2.3",
"execa": {
"cross-spawn": "^7.0.6"
},
"tfx-cli": {
"tmp": "^0.2.5"
}
}
}