-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
70 lines (70 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
{
"name": "vscode-javascript-comment",
"publisher": "NicholasHsiang",
"displayName": "JavaScript Comment Snippet",
"description": "Comment snippets for JavaScript",
"icon": "art/icon.png",
"version": "1.0.5",
"galleryBanner": {
"color": "#ffffff",
"theme": "dark"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/xianghongai/vscode-javascript-comment/issues"
},
"homepage": "https://github.com/xianghongai/vscode-javascript-comment/",
"repository": {
"type": "git",
"url": "https://github.com/xianghongai/vscode-javascript-comment/blob/master/README.md"
},
"engines": {
"vscode": "^0.12.x"
},
"categories": [
"Snippets"
],
"keywords": [
"jsdoc",
"esdoc",
"tsdoc",
"javascript",
"typescript",
"ecmascript",
"comment",
"javascript comment",
"typescript comment",
"es6 comment",
"js comment",
"ts comment"
],
"contributes": {
"snippets": [
{
"language": "javascript",
"path": "./snippets/javascript.json"
},
{
"language": "typescript",
"path": "./snippets/javascript.json"
},
{
"language": "javascriptreact",
"path": "./snippets/javascript.json"
},
{
"language": "vue",
"path": "./snippets/javascript.json"
}
]
},
"scripts": {
"prebuild": "node merge.js",
"build": "vsce package",
"prepublish": "npm run build",
"publish": "vsce publish"
},
"devDependencies": {
"glob": "^7.1.4"
}
}