forked from r5n-labs/vscode-react-javascript-snippets
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 995 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 995 Bytes
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
{
"name": "es7-react-js-snippets",
"displayName": "ES7 React/Redux/GraphQL/React-Native snippets",
"description": "Simple extensions for React, Redux and Graphql in JS with ES7 syntax",
"version": "1.4.0",
"publisher": "dsznajder",
"icon": "images/logo.png",
"keywords": [
"snippets",
"react",
"redux",
"react-native",
"graphql",
"javascript"
],
"engines": {
"vscode": "^1.13.0"
},
"license": "SEE LICENSE",
"repository": {
"type": "git",
"url": "https://github.com/dsznajder/vscode-es7-javascript-react-snippets"
},
"categories": [
"Snippets"
],
"contributes": {
"snippets": [
{
"language": "javascript",
"path": "./snippets/snippets.json"
},
{
"language": "javascriptreact",
"path": "./snippets/snippets.json"
}
]
}
}