-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.32 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": "it-should-be-at-core-vscode",
"displayName": "It should be at core",
"description": "Gotchas, Insights and helpful features. Remember files, back actions (after go to definition for example), etc...",
"version": "0.0.1",
"publisher": "bigous",
"icon": "doc/idea-icon.svg",
"galleryBanner": {
"color": "#605040",
"theme": "dark"
},
"engines": {
"vscode": "^0.10.5"
},
"repository": {
"type": "git",
"url": "https://github.com/BCJTI/it-should-be-at-core-vscode"
},
"bugs": {
"url":"https://github.com/BCJTI/it-should-be-at-core-vscode/issues"
},
"homepage": "https://github.com/BCJTI/it-should-be-at-core-vscode/blob/master/README.md",
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./out/src/extension",
"contributes": {
"configuration": {
"type": "object",
"title": "It should be at core configurations",
"properties": {
"bcjti.itShould.enableFileReopener" : {
"type": "boolean",
"default": true,
"description": "Enable/disable the smart file reopener feature"
}
}
}
},
"scripts": {
"vscode:prepublish": "node ./node_modules/vscode/bin/compile",
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./"
},
"devDependencies": {
"typescript": "^1.6.2",
"vscode": "0.10.x"
}
}