-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.76 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 1.76 KB
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
{
"name": "snippet-generator",
"displayName": "Snippet Generator",
"description": "📜 Generate snippets from code in VSCode",
"version": "0.4.2",
"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"
}
],
"configuration": {
"type": "object",
"title": "Snippet Generator",
"properties": {
"snippet-generator.doNotEscapeSpecialVariables": {
"type": "boolean",
"default": true,
"markdownDescription": "Do not escape special snippet variables that follow the syntax of `$1`, `${1:label}`, or `$TM_*`."
}
}
}
},
"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"
}
}