-
Notifications
You must be signed in to change notification settings - Fork 67
/
package.json
66 lines (66 loc) · 2.03 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
{
"name": "@microsoft/vscode-azext-utils",
"author": "Microsoft Corporation",
"version": "2.5.11",
"description": "Common UI tools 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/utils/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": {
"@microsoft/vscode-azureresources-api": "^2.3.1",
"@vscode/extension-telemetry": "^0.9.6",
"dayjs": "^1.11.2",
"escape-string-regexp": "^2.0.0",
"html-to-text": "^8.2.0",
"semver": "^7.3.7",
"uuid": "^9.0.0",
"vscode-tas-client": "^0.1.84",
"vscode-uri": "^3.0.6"
},
"peerDependencies": {
"@azure/ms-rest-azure-env": "^2.0.0"
},
"devDependencies": {
"@microsoft/eslint-config-azuretools": "^0.2.1",
"@microsoft/vscode-azext-dev": "^2.0.4",
"@types/html-to-text": "^8.1.0",
"@types/mocha": "^7.0.2",
"@types/node": "^16.0.0",
"@types/semver": "^7.3.9",
"@types/uuid": "^9.0.1",
"@types/vscode": "^1.82.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"
}
}