-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
74 lines (74 loc) · 1.97 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
{
"name": "fix-json",
"displayName": "Fix JSON",
"description": "Fix JSON content using jsonic",
"version": "0.1.2",
"publisher": "oliversturm",
"engines": {
"vscode": "^1.18.0"
},
"categories": [
"Other",
"Formatters"
],
"keywords": [
"JSON",
"fix",
"format"
],
"activationEvents": [
"onCommand:fixJson.fix"
],
"main": "./extension",
"contributes": {
"commands": [
{
"command": "fixJson.fix",
"title": "Fix JSON"
}
],
"configuration": {
"type": "object",
"title": "Fix JSON configuration",
"properties": {
"fixJson.indentationSpaces": {
"type": [
"number",
"null"
],
"default": null,
"description": "Number of spaces to use for indentation of formatted JSON output. If not set, your editor.tabSize setting is used."
}
}
}
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"typescript": "^2.6.1",
"vscode": "^1.1.6",
"eslint": "^4.6.1",
"@types/node": "^7.0.43",
"@types/mocha": "^2.2.42"
},
"dependencies": {
"jsonic": "^0.3.0"
},
"repository": {
"type": "git",
"url": "https://github.com/oliversturm/vscode-fix-json.git"
},
"bugs": {
"url": "https://github.com/oliversturm/vscode-fix-json/issues"
},
"homepage": "https://github.com/oliversturm/vscode-fix-json/blob/master/README.md",
"license": "MIT",
"author": "Oliver Sturm <[email protected]>",
"galleryBanner": {
"color": "#ff7f0f",
"theme": "dark"
},
"icon": "images/icon.png"
}