-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
executable file
·42 lines (42 loc) · 1.15 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
{
"name": "javascriptsnippets",
"version": "0.4.0",
"license": "MIT",
"description": "Visual Studio Code snippets for JavaScript, TypeScript, and React",
"author": "Nathan Chapman <[email protected]> (https://nathanchapman.dev)",
"publisher": "nathanchapman",
"displayName": "JavaScript Snippets",
"icon": "media/javascript.png",
"repository": "github:nathanchapman/vscode-javascript-snippets",
"bugs": "https://github.com/nathanchapman/vscode-javascript-snippets/issues",
"homepage": "https://github.com/nathanchapman/vscode-javascript-snippets#readme",
"engines": {
"vscode": "^1.x.x"
},
"categories": [
"Snippets"
],
"contributes": {
"snippets": [
{
"path": "./snippets/global.code-snippets"
},
{
"language": "javascript",
"path": "./snippets/js.code-snippets"
},
{
"language": "typescript",
"path": "./snippets/ts.code-snippets"
},
{
"language": "javascriptreact",
"path": "./snippets/jsx.code-snippets"
},
{
"language": "typescriptreact",
"path": "./snippets/tsx.code-snippets"
}
]
}
}