-
-
Notifications
You must be signed in to change notification settings - Fork 81
/
package.json
55 lines (55 loc) · 2.57 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
{
"name": "vsts-developer-tools",
"description": "Azure DevOps Extension Tasks",
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/azure-devops-extension-tasks.git"
},
"keywords": [
"azure-devops",
"azure-pipelines",
"vsts",
"tfs"
],
"scripts": {
"initdev": "npm run initdev:npm",
"initdev:npm": "npm run initdev:npm:base & npm run initdev:npm:tasks",
"initdev:npm:base": "npm install --no-progress --force --no-update-notifier --legacy-peer-deps --no-fund",
"initdev:npm:tasks": "glob-exec --parallel --foreach \"BuildTasks/*/*/tsconfig.json\" -- \"cd {{file.dir}} && npm install --force --no-update-notifier --no-progress --legacy-peer-deps --no-fund\"",
"compile:tasks": "npm run compile:tasks:v4 && npm run compile:tasks:v5",
"compile:tasks:v4": "glob-exec \"BuildTasks/*/v4/tsconfig.json\" -- \"tsc -b {{files.join(' ')}}\"",
"compile:tasks:v5": "glob-exec \"BuildTasks/*/v5/tsconfig.json\" -- \"tsc -b {{files.join(' ')}}\"",
"postcompile:tasks": "npm run lint:tasks",
"lint:tasks": "npm run lint:tasks:v4 && npm run lint:tasks:v5",
"lint:tasks:v4": "glob-exec --parallel --foreach \"BuildTasks/*/v4/tsconfig.json\" -- \"eslint {{file.dir}}\\*.ts --parser-options \"{'project':['{{file}}']}\"",
"lint:tasks:v5": "glob-exec --parallel --foreach \"BuildTasks/*/v5/tsconfig.json\" -- \"eslint {{file.dir}}\\*.ts --parser-options \"{'project':['{{file}}']}\"",
"package:tasks": "tfx extension create --root . --output-path dist --manifest-globs vss-extension.json",
"build": "npm run build:tasks",
"build:clean": "npm run clean && npm run initdev && npm run build",
"build:tasks": "npm run compile:tasks",
"package": "glob-exec --parallel --foreach \"BuildTasks/*/*/tsconfig.json\" -- \"cd {{file.dir}} && npm dedupe && npm prune --omit=dev\"",
"clean": "git clean -fdX"
},
"author": "Microsoft Corporation",
"license": "MIT",
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@types/core-js": "^2.5.8",
"@types/fs-extra": "^5.1.0",
"@types/node": "^20.17.12",
"@types/promise-retry": "^1.1.6",
"@types/q": "^1.5.8",
"@types/temp": "^0.9.4",
"@types/xmldom": "^0.1.34",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"@ungap/structured-clone": "^1.2.1",
"eslint": "^9.17.0",
"glob-exec": "^0.1.1",
"globals": "^15.14.0",
"tfx-cli": "^0.18.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.1"
}
}