-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.08 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
{
"name": "format-json",
"displayName": "JSON formatter",
"version": "1.0.3",
"publisher": "ClemensPeters",
"description": "Convert file to file type json and format content.",
"author": {
"name": "Clemens Peters"
},
"categories": [
"Formatters"
],
"icon": "images/icon.png",
"galleryBanner": {
"color": "#C80000",
"theme": "dark"
},
"activationEvents": [
"onCommand:extension.formatJSON"
],
"engines": {
"vscode": "^1.44.0"
},
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "extension.formatJSON",
"title": "Format JSON"
}
]
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./"
},
"devDependencies": {
"@types/mocha": "^2.2.32",
"@types/node": "^14.14.6",
"@types/vscode": "^1.44.0",
"mocha": "^2.3.3",
"typescript": "^4.0.5",
"vsce": "^2.15.0"
},
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/clemenspeters/vscode-extension-format-json.git"
},
"homepage": "https://github.com/clemenspeters/vscode-extension-format-json/blob/master/README.md"
}