-
Notifications
You must be signed in to change notification settings - Fork 67
/
package.json
55 lines (55 loc) · 1.72 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
{
"name": "@microsoft/vscode-azext-azureappsettings",
"author": "Microsoft Corporation",
"version": "0.2.2",
"description": "Common features and tools surrounding App Settings for the Azure VS Code extensions",
"tags": [
"azure",
"vscode"
],
"keywords": [
"azure",
"vscode"
],
"main": "out/src/index.js",
"types": "out/src/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/appsettings/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-azext-utils": "^2.0.0"
},
"devDependencies": {
"@azure/arm-appservice": "^13.0.2",
"@microsoft/eslint-config-azuretools": "^0.2.1",
"@microsoft/vscode-azext-dev": "^2.0.0",
"@types/fs-extra": "^9.0.13",
"@types/mocha": "^9.0.0",
"@types/node": "^16.0.0",
"@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",
"fs-extra": "^10.0.0",
"globby": "^11.0.2",
"mocha": "^9.1.3",
"mocha-junit-reporter": "^2.0.2",
"mocha-multi-reporters": "^1.1.7",
"typescript": "^4.9.4"
}
}