-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
46 lines (46 loc) · 1.96 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
{
"name": "jessehouwing-vsts-variable-tasks",
"description": "Azure Pipelines Variable Toolbox",
"repository": {
"type": "git",
"url": "https://github.com/jessehouwing/azure-pipelines-variable-tasks"
},
"keywords": [
"vsts",
"tfs",
"azure-devops",
"azure-pipelines"
],
"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 --no-update-notifier",
"initdev:npm:tasks": "glob-exec --parallel --foreach \"vsts-variable-*/*/tsconfig.json\" -- \"cd {{file.dir}} && npm install --no-update-notifier --no-progress\"",
"compile:tasks": "glob-exec \"vsts-variable-*/*/tsconfig.json\" -- \"tsc -b {{files.join(' ')}}\"",
"postcompile:tasks": "npm run lint:tasks",
"cleanup:tasks": "glob-exec --parallel --foreach \"vsts-variable-*/*/tsconfig.json\" -- \"cd {{file.dir}} && npm dedupe && npm prune --production\"",
"lint:tasks": "glob-exec --parallel --foreach \"vsts-variable-*/*/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 && npm run cleanup:tasks",
"package": "npm run build:clean && npm run package:tasks",
"clean": "git clean -fdX"
},
"author": "Jesse Houwing",
"license": "MIT",
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.19.0",
"@types/core-js": "^2.5.8",
"@types/node": "^16.18.125",
"eslint": "^9.19.0",
"glob-exec": "^0.1.1",
"globals": "^15.14.0",
"tfx-cli": "^0.18.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.22.0",
"@typescript-eslint/eslint-plugin": "^8.22.0",
"@typescript-eslint/parser": "^8.22.0"
}
}