forked from microsoft/vscode-azurearmtools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
122 lines (122 loc) · 3.46 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
{
"name": "azurerm-vscode-tools",
"displayName": "Azure Resource Manager Tools",
"description": "Template language support for Azure Resource Manager JSON files.",
"version": "0.6.1-alpha",
"publisher": "msazurermtools",
"categories": [
"Azure",
"Programming Languages",
"Linters"
],
"keywords": [
"ARM",
"Azure",
"Resource Manager",
"Template",
"Deployment"
],
"repository": {
"url": "https://github.com/Microsoft/vscode-azurearmtools.git"
},
"bugs": {
"url": "https://github.com/Microsoft/vscode-azurearmtools/issues"
},
"galleryBanner": {
"color": "E7F1FA",
"theme": "light"
},
"homepage": "https://github.com/Microsoft/vscode-azurearmtools/blob/master/README.md",
"license": "SEE LICENSE IN LICENSE.md",
"icon": "images/AzureRMTools128x128.png",
"aiKey": "AIF-d9b70cd4-b9f9-4d70-929b-a071c400b217",
"engines": {
"vscode": "^1.26.0"
},
"preview": true,
"activationEvents": [
"onLanguage:json",
"onLanguage:jsonc"
],
"contributes": {
"grammars": [
{
"injectTo": [
"source.json"
],
"scopeName": "detect-arm.injection.json.comments",
"path": "dist/grammars/detect-arm.injection.tmLanguage.json"
},
{
"scopeName": "source.json.arm",
"path": "dist/grammars/JSONC.arm.tmLanguage.json"
},
{
"scopeName": "source.tle.arm",
"path": "dist/grammars/arm-expression-string.tmLanguage.json"
}
],
"configuration": {
"type": "object",
"title": "Azure Resource Manager Tools Configuration Settings",
"properties": {}
},
"views": {
"explorer": [
{
"id": "json-outline",
"name": "ARM Template Outline",
"when": "showArmJsonView"
}
]
}
},
"main": "main",
"scripts": {
"vscode:prepublish": "npm run webpack-prod",
"compile": "gulp build-grammars && tsc -watch -p ./",
"build": "gulp build-grammars && tsc -p ./",
"package": "vsce package",
"lint": "tslint --project tsconfig.json -t verbose",
"lint-fix": "tslint --project tsconfig.json -t verbose --fix",
"postinstall": "node ./node_modules/vscode/bin/install",
"pretest": "npm run build && npm run webpack-prod",
"pretest-dev": "npm run build && npm run webpack",
"test": "gulp test",
"all": "npm i && npm run lint && npm test",
"webpack": "gulp webpack-dev",
"webpack-prod": "gulp webpack-prod",
"webpack-profile": "webpack --profile --json --mode production > webpack-stats.json && echo Use http://webpack.github.io/analyse to analyze the stats",
"build-grammars": "gulp build-grammars",
"watch-grammars": "gulp watch-grammars",
"watch": "gulp watch"
},
"devDependencies": {
"@types/fs-extra": "^5.0.5",
"@types/mocha": "^2.2.41",
"@types/node": "^8.10.48",
"@types/opn": "^5.5.0",
"gulp": "^4.0.1",
"gulp-cli": "^2.2.0",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"mocha-junit-reporter": "^1.22.0",
"mocha-multi-reporters": "^1.1.7",
"remap-istanbul": "^0.8.4",
"ts-node": "^7.0.1",
"tslint": "^5.16.0",
"tslint-microsoft-contrib": "5.0.3",
"typescript": "^3.4.5",
"vsce": "^1.59.0",
"vscode": "^1.1.33",
"vscode-azureextensiondev": "0.1.8",
"webpack": "4.28.1",
"webpack-cli": "^3.3.1"
},
"dependencies": {
"fs-extra": "^7.0.1",
"moment": "^2.24.0",
"opn": "^5.5.0",
"vscode-azureextensionui": "^0.23.2"
}
}