-
Notifications
You must be signed in to change notification settings - Fork 68
/
package.json
73 lines (73 loc) · 2.43 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@microsoft/vscode-azext-azureutils",
"author": "Microsoft Corporation",
"version": "3.1.3",
"description": "Common Azure utils for developing Azure extensions for VS Code",
"tags": [
"azure",
"vscode"
],
"keywords": [
"azure",
"vscode"
],
"main": "out/src/index.js",
"types": "index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/vscode-azuretools"
},
"bugs": {
"url": "https://github.com/Microsoft/vscode-azuretools/issues"
},
"homepage": "https://github.com/Microsoft/vscode-azuretools/blob/main/azure/README.md",
"scripts": {
"build": "tsc -p ./",
"compile": "tsc -watch -p ./",
"lint": "eslint --ext .ts .",
"lint-fix": "eslint --ext .ts . --fix",
"test": "node ./out/test/runTest.js",
"package": "npm pack"
},
"dependencies": {
"@azure/arm-authorization": "^9.0.0",
"@azure/arm-authorization-profile-2020-09-01-hybrid": "^2.1.0",
"@azure/arm-msi": "^2.1.0",
"@azure/arm-resources": "^5.0.0",
"@azure/arm-resources-profile-2020-09-01-hybrid": "^2.0.0",
"@azure/arm-resources-subscriptions": "^2.0.0",
"@azure/arm-storage": "^18.2.0",
"@azure/arm-storage-profile-2020-09-01-hybrid": "^2.0.0",
"@azure/core-client": "^1.6.0",
"@azure/core-rest-pipeline": "^1.9.0",
"@azure/logger": "^1.0.4",
"@microsoft/vscode-azext-utils": "^2.5.7",
"semver": "^7.3.7",
"uuid": "^9.0.0"
},
"peerDependencies": {
"@azure/ms-rest-azure-env": "^2.0.0"
},
"devDependencies": {
"@azure/core-auth": "^1.3.2",
"@azure/core-paging": "^1.2.1",
"@microsoft/eslint-config-azuretools": "^0.2.1",
"@microsoft/vscode-azext-dev": "^2.0.4",
"@microsoft/vscode-azureresources-api": "^2.0.3",
"@types/mocha": "^7.0.2",
"@types/node": "^16.0.0",
"@types/semver": "^7.3.9",
"@types/uuid": "^9.0.1",
"@types/vscode": "1.76.0",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@vscode/test-electron": "^2.3.8",
"eslint": "^8.34.0",
"eslint-plugin-import": "^2.22.1",
"glob": "^7.1.6",
"mocha": "^9.1.3",
"mocha-junit-reporter": "^2.0.2",
"mocha-multi-reporters": "^1.1.7",
"typescript": "^4.9.4"
}
}