-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
71 lines (71 loc) · 1.39 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
{
"name": "snippet-generator",
"displayName": "Snippet Generator",
"description": "📜 Generate snippets from code in VSCode",
"version": "0.3.8",
"publisher": "wenfangdu",
"icon": "images/icon.png",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/wenfangdu/vscode-snippet-generator"
},
"engines": {
"vscode": "^1.74.0"
},
"categories": [
"Programming Languages",
"Snippets"
],
"keywords": [
"code",
"conversion",
"convert",
"converter",
"create",
"creator",
"description",
"fast",
"generate",
"generator",
"json",
"prefix",
"productivity",
"quick",
"rapid",
"scaffold",
"scope",
"shortcut",
"snippet",
"snippets",
"tab",
"util",
"utility"
],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "snippet-generator.generate-snippet",
"title": "Generate Snippet"
}
]
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "node ./test/runTest.js",
"vscode:prepublish": "npm install"
},
"devDependencies": {
"@types/glob": "^7.1.4",
"@types/mocha": "^8.2.3",
"@types/node": "14.x",
"@types/vscode": "^1.74.0",
"eslint": "^7.32.0",
"glob": "^7.1.7",
"mocha": "^8.4.0",
"typescript": "^4.4.2",
"vscode-test": "^1.6.1"
}
}