forked from microsoft/vscode-editorconfig
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.22 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
{
"name": "vscodeEditorConfig",
"displayName": "Editor Config for VS Code",
"description": "DEPRECATED - See Read Me for more information",
"publisher": "chrisdias",
"version": "0.1.7",
"icon": "./EditorConfig_icon.png",
"engines": {
"vscode": "^0.10.1"
},
"author": "Microsoft Corporation",
"license": "MIT",
"categories": [
"Other"
],
"homepage": "https://github.com/Microsoft/vscode-editorconfig/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/vscode-editorconfig.git"
},
"bugs": {
"url": "https://github.com/Microsoft/vscode-editorconfig/issues"
},
"galleryBanner": {
"color": "#37699A",
"theme": "dark"
},
"activationEvents": [
"*"
],
"main": "./out/src/editorConfigMain",
"contributes": {
"commands": [
{
"command": "vscode.generateeditorconfig",
"title": "EditorConfig: Generate"
}
]
},
"dependencies": {
"editorconfig": "0.12.2",
"open": "0.0.5"
},
"devDependencies": {
"typescript": "^1.6.2",
"vscode": "0.10.x"
},
"scripts": {
"vscode:prepublish": "node ./node_modules/vscode/bin/compile",
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./"
}
}