-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathpackage.json
77 lines (77 loc) · 2.41 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
74
75
76
77
{
"name": "@microsoft/vscode-azext-dev",
"author": "Microsoft Corporation",
"version": "2.1.0",
"description": "Common dev dependency tools for developing Azure extensions for VS Code",
"tags": [
"azure",
"vscode"
],
"keywords": [
"azure",
"vscode"
],
"bin": {
"vscode-sort-package-json": "scripts/sortPackageJson.mjs"
},
"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/dev/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"
},
"devDependencies": {
"@azure/ms-rest-azure-env": "^2.0.0",
"@microsoft/eslint-config-azuretools": "^0.2.1",
"@types/copy-webpack-plugin": "^6.0.0",
"@types/fs-extra": "^8.0.0",
"@types/glob": "^8.1.0",
"@types/mocha": "^7.0.2",
"@types/node": "^16.0.0",
"@types/terser-webpack-plugin": "^5.0.0",
"@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",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"dependencies": {
"assert": "^2.0.0",
"browserify-zlib": "^0.2.0",
"clean-webpack-plugin": "^4.0.0",
"console-browserify": "^1.2.0",
"copy-webpack-plugin": "6.0.0",
"fs-extra": "^8.0.0",
"https-browserify": "^1.0.0",
"mocha": "^10.2.0",
"mocha-junit-reporter": "^1.23.1",
"mocha-multi-reporters": "^1.1.7",
"os-browserify": "^0.3.0",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"querystring-es3": "^0.2.1",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"terser-webpack-plugin": "^5.0.0",
"ts-loader": "^9.4.2",
"url": "^0.11.0",
"util": "^0.12.5",
"webpack": "^5.74.0"
}
}