-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
102 lines (102 loc) · 2.66 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "without-guns",
"displayName": "Without Guns",
"description": "Takes your guns from you and teaches you mindful programming",
"version": "0.3.1",
"publisher": "ironcev",
"license": "MIT",
"author": {
"email": "ironcev@hotmail.com",
"name": "Igor Rončević",
"url": "http://thehumbleprogrammer.com"
},
"contributors": [],
"repository": {
"type": "git",
"url": "https://github.com/ironcev/without-guns-for-vs-code"
},
"bugs": {
"url": "https://github.com/ironcev/without-guns-for-vs-code/issues",
"email": "ironcev@hotmail.com"
},
"engines": {
"vscode": "^1.16.0"
},
"categories": [
"Other"
],
"keywords": [
"productivity",
"code-lens",
"syntax-highlighting",
"intellisense",
"mindful-programming"
],
"preview": false,
"homepage": "https://github.com/ironcev/without-guns-for-vs-code",
"icon": "images/logo.png",
"galleryBanner": {
"color": "#ffdd00"
},
"activationEvents": [
"onCommand:withoutGuns.takeTheGuns",
"onCommand:withoutGuns.giveTheGunsBack"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "withoutGuns.takeTheGuns",
"title": "Without",
"category": "Guns"
},
{
"command": "withoutGuns.giveTheGunsBack",
"title": "With",
"category": "Guns"
}
],
"configuration": {
"type": "object",
"title": "Without Guns Internal Configuration",
"properties": {
"_withoutGuns.internal.areGunsTaken": {
"type": "boolean",
"default": false,
"description": "This internal setting is automatically set to true if the guns are currently taken. It is not meant to be modified manually."
}
}
},
"menus": {
"commandPalette": [
{
"command": "withoutGuns.takeTheGuns",
"when": "!config._withoutGuns.internal.areGunsTaken"
},
{
"command": "withoutGuns.giveTheGunsBack",
"when": "config._withoutGuns.internal.areGunsTaken"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"typescript": "^2.5.2",
"vscode": "^1.1.5",
"mocha": "^3.5.0",
"@types/node": "^7.0.43",
"@types/mocha": "^2.2.42",
"@types/load-json-file": "^2.0.6"
},
"dependencies": {
"@types/load-json-file": "^2.0.6",
"load-json-file": "^3.0.0"
}
}