-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
130 lines (130 loc) · 3.26 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "armview",
"displayName": "ARM Template Viewer",
"description": "Graphically display ARM templates in an interactive map view",
"version": "0.4.6",
"icon": "assets/img/icons/main.png",
"publisher": "bencoleman",
"author": {
"name": "Ben Coleman",
"email": "[email protected]"
},
"keywords": [
"arm",
"template",
"preview",
"visualizer",
"map",
"viewer",
"azure"
],
"engines": {
"vscode": "^1.30.0"
},
"categories": [
"Programming Languages",
"Linters",
"Formatters",
"Other",
"Azure"
],
"activationEvents": [
"onCommand:armView.start"
],
"repository": {
"type": "git",
"url": "https://github.com/benc-uk/armview-vscode"
},
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "armView.start",
"title": "Preview ARM file graphically",
"category": "ARM Viewer",
"icon": {
"light": "./assets/img/icons/eye-light.svg",
"dark": "./assets/img/icons/eye-dark.svg"
}
}
],
"configuration": {
"title": "ARM Template Viewer",
"properties": {
"armView.iconTheme": {
"type": "string",
"enum": [
"original"
],
"default": "original",
"description": "Icon theme to use when displaying resources"
},
"armView.linkedUrlCacheTime": {
"type": "integer",
"default": 120,
"description": "Number of seconds to cache any external URLs when fetching linked templates"
}
}
},
"menus": {
"editor/title": [
{
"command": "armView.start",
"when": "editorLangId == json || editorLangId == arm-template",
"group": "navigation"
}
],
"editor/title/context": [
{
"command": "armView.start",
"when": "editorLangId == json || editorLangId == arm-template",
"group": "navigation"
}
],
"commandPalette": [
{
"command": "armView.start",
"when": "editorLangId == json || editorLangId == arm-template",
"group": "navigation"
}
]
},
"keybindings": [
{
"command": "armView.start",
"key": "ctrl+alt+q",
"mac": "cmd+alt+q",
"when": "editorLangId == json || editorLangId == arm-template"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint --ext .ts assets/js/main.js src",
"watch": "tsc -w -p ./",
"test": "mocha --timeout 10000 test/reference.test.js",
"test-qs": "mocha --timeout 20000 test/quickstart.test.js"
},
"dependencies": {
"isomorphic-fetch": "^3.0.0",
"jsonc-parser": "^3.0.0",
"node-cache": "^5.1.2",
"uuid": "^8.3.2",
"vscode-extension-telemetry": "^0.1.6"
},
"devDependencies": {
"@types/uuid": "^8.3.4",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.15",
"@types/vscode": "^1.64.0",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"chai": "^4.3.6",
"chai-subset": "^1.6.0",
"eslint": "^8.8.0",
"mocha": "^9.2.0",
"ts-loader": "^9.2.6",
"typescript": "^4.5.5"
}
}