-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.22 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
{
"name": "recompose-snippets",
"displayName": "Recompose Snippets",
"description": "Extension to provide snippets to multiple logic layers with recompose",
"version": "1.0.4",
"repository": "https://github.com/luanbitar/vscode-extension-recompose",
"publisher": "lbitar",
"icon": "logo.png",
"engines": {
"vscode": "^0.10.5"
},
"categories": [
"Snippets",
"Other"
],
"keywords": [
"react",
"reactjs",
"recompose",
"redux",
"react-native",
"javascript",
"javascriptreact",
"Javascript React",
"typescript",
"typescriptreact",
"Typescript React",
"js",
"jsx",
"ts",
"tsx",
"snippet",
"snippets",
"keybinding",
"es5",
"es6",
"es7",
"vscode",
"vscode-extension",
"node",
"nodejs"
],
"contributes": {
"snippets": [
{
"language": "javascript",
"path": "./snippets/snippets.json"
},
{
"language": "javascriptreact",
"path": "./snippets/snippets.json"
},
{
"language": "typescript",
"path": "./snippets/snippets.json"
},
{
"language": "typescriptreact",
"path": "./snippets/snippets.json"
}
]
}
}