-
Notifications
You must be signed in to change notification settings - Fork 600
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.89 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.89 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
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "azure-pipelines-dtl-tasks",
"version": "3.0.16",
"description": "Collection of cross-platform Azure Pipelines tasks to interact with Azure DevTest Labs.",
"main": "index.js",
"dependencies": {
"@azure/arm-devtestlabs": "^3.2.0",
"@azure/core-tracing": "^1.0.0-preview.11",
"@azure/arm-resources": "^4.0.0",
"@azure/ms-rest-js": "^2.4.1",
"@azure/ms-rest-nodeauth": "^3.0.9",
"@azure/storage-blob": "^12.5.0",
"azure-pipelines-task-lib": "^3.1.2",
"isomorphic-fetch": "^3.0.0",
"minimist": "^1.2.6",
"tough-cookie": "^4.0.0",
"axios": "^1.7.0"
},
"devDependencies": {
"@types/mocha": "^8.2.2",
"@types/ncp": "^2.0.4",
"@types/node": "^24.0.0",
"@types/q": "^1.5.4",
"ansi-regex": "^6.0.1",
"immer": "^9.0.6",
"ncp": "^2.0.0",
"react-dev-utils": "^11.0.4",
"rimraf": "^3.0.2",
"set-value": "^4.0.1",
"terser-webpack-plugin": "^5.1.1",
"ts-loader": "^9.1.2",
"typescript": "^4.2.4",
"webpack": "^5.36.2"
},
"scripts": {
"build-dev": "npm run copy-dev && tsc",
"bundle": "node scripts/bundle.js",
"clean": "node scripts/clean.js",
"clean-dev": "node scripts/clean.js --dev",
"clean-submods": "node scripts/clean.js --submods",
"copy": "node scripts/copy.js",
"copy-dev": "node scripts/copy.js --dev",
"init-dev": "npm run clean-dev && npm run build-dev",
"init-mods": "npm install && npm run clean-submods",
"package": "npm run package-build && npm run tfx",
"package-build": "npm run clean && npm run clean-submods && npm run bundle && npm run copy",
"test": "echo \"Error: no test specified\" && exit 1",
"tfx": "tfx extension create --manifest-globs --root dist --output-path dist"
},
"keywords": [],
"author": "rbest, leov",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Azure/azure-devtestlab.git"
}
}