-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
55 lines (55 loc) · 1.18 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
{
"name": "snippet-creator",
"displayName": "Snippet Creator",
"description": "Create snippets from selection",
"version": "0.0.1",
"icon": "img/icon.png",
"author": {
"name": "Vincent Kosciuszko",
"url": "https://github.com/VincentKos",
"email": "[email protected]"
},
"keywords": [
"snippet",
"creation"
],
"engines": {
"vscode": "^1.30.0"
},
"categories": [
"Snippets",
"Other"
],
"activationEvents": [
"onCommand:extension.createSnippet"
],
"main": "./src/extension.js",
"contributes": {
"commands": [
{
"command": "extension.createSnippet",
"title": "Create Snippet"
}
]
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"typescript": "^3.1.4",
"vscode": "^1.1.25",
"eslint": "^4.11.0",
"@types/node": "^8.10.25",
"@types/mocha": "^2.2.42"
},
"homepage": "https://github.com/VincentKos/vscode-snippet-creator",
"repository": {
"type": "git",
"url": "https://github.com/VincentKos/vscode-snippet-creator"
},
"bugs": {
"url": "https://github.com/VincentKos/vscode-snippet-creator/issues"
},
"publisher": "vincentkos"
}