-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
87 lines (87 loc) · 2.47 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
{
"name": "json-to-js",
"displayName": "JSON to JS converter",
"description": "Converts a JSON string into a valid JS object",
"version": "0.2.0",
"publisher": "renatorodrigues",
"icon": "icon.png",
"engines": {
"vscode": "^1.27.0"
},
"author": "Renato Rodrigues <[email protected]>",
"bugs": {
"url": "https://github.com/rerodrigues/vscode-json-to-js/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/rerodrigues/vscode-json-to-js.git"
},
"homepage": "https://github.com/rerodrigues/vscode-json-to-js",
"license": "MIT",
"categories": [
"Formatters",
"Other"
],
"keywords": [
"json",
"javascript",
"object",
"json-to-js",
"converter"
],
"galleryBanner": {
"color": "#F6DC18",
"theme": "light"
},
"activationEvents": [
"onCommand:extension.jsonToJs"
],
"main": "./extension",
"contributes": {
"commands": [
{
"command": "extension.jsonToJs",
"title": "Convert JSON into JS object"
}
],
"keybindings": [
{
"command": "extension.jsonToJs",
"key": "ctrl+shift+j",
"mac": "cmd+shift+j",
"when": "editorTextFocus && editorHasSelection && !editorReadonly"
}
],
"configuration": {
"type": "object",
"title": "JSON to JS converter",
"properties": {
"json-to-js.indentationSize": {
"type": "number",
"default": 2,
"description": "Number of spaces to use in indentation."
},
"json-to-js.addTrailingComma": {
"type": "boolean",
"default": true,
"description": "Add trailing commas to object and array literals."
}
}
}
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"typescript": "^2.6.1",
"vscode": "^1.1.21",
"eslint": "^4.11.0",
"@types/node": "^8.10.25",
"@types/mocha": "^2.2.42"
},
"dependencies": {
"javascript-stringify": "^1.6.0"
}
}