1
1
{
2
- "name" : " JavaScriptSnippets " ,
3
- "description " : " JavaScript (ES6) code snippets for VS Code " ,
4
- "version " : " 0.2.0 " ,
5
- "displayName " : " JavaScript Snippets " ,
6
- "publisher " : " nathanchapman" ,
7
- "icon " : " images/javascript.png " ,
8
- "license " : " MIT " ,
9
- "repository " : {
10
- "type " : " git " ,
11
- "url " : " https://github.com/nathanchapman/vscode-javascript-snippets"
12
- } ,
13
- "engines" : {
14
- "vscode" : " 0.10 .x"
15
- },
16
- "categories" : [
17
- " Snippets"
18
- ],
19
- "contributes" : {
20
- "snippets" : [
21
- {
22
- "language" : " javascript" ,
23
- "path" : " ./snippets/snippets .json"
24
- },
25
- {
26
- "language" : " typescript" ,
27
- "path" : " ./snippets/snippets .json"
28
- },
29
- {
30
- "language" : " javascriptreact" ,
31
- "path" : " ./snippets/snippets .json"
32
- },
33
- {
34
- "language" : " typescriptreact" ,
35
- "path" : " ./snippets/snippets .json"
36
- }
37
- ]
38
- }
39
- }
2
+ "name" : " javascriptsnippets " ,
3
+ "version " : " 0.2.0 " ,
4
+ "license " : " MIT " ,
5
+ "description " : " Visual Studio Code snippets for JavaScript, TypeScript, and React " ,
6
+ "author " : " Nathan Chapman < nathanchapman@duck.com> (http://nathanchapman.io) " ,
7
+ "publisher " : " nathanchapman " ,
8
+ "displayName " : " JavaScript Snippets " ,
9
+ "icon " : " https://upload.wikimedia.org/wikipedia/commons/6/6a/JavaScript-logo.png " ,
10
+ "repository " : " github:nathanchapman/vscode-javascript-snippets " ,
11
+ "bugs " : " https://github.com/nathanchapman/vscode-javascript-snippets/issues " ,
12
+ "homepage" : " https://github.com/nathanchapman/vscode-javascript-snippets#readme " ,
13
+ "engines" : {
14
+ "vscode" : " ^1.x .x"
15
+ },
16
+ "categories" : [
17
+ " Snippets"
18
+ ],
19
+ "contributes" : {
20
+ "snippets" : [
21
+ {
22
+ "language" : " javascript" ,
23
+ "path" : " ./snippets/js .json"
24
+ },
25
+ {
26
+ "language" : " typescript" ,
27
+ "path" : " ./snippets/ts .json"
28
+ },
29
+ {
30
+ "language" : " javascriptreact" ,
31
+ "path" : " ./snippets/jsx .json"
32
+ },
33
+ {
34
+ "language" : " typescriptreact" ,
35
+ "path" : " ./snippets/tsx .json"
36
+ }
37
+ ]
38
+ }
39
+ }
0 commit comments