-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.27 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
{
"name": "react-typescript-cypress-testing-lib-snippets",
"displayName": "Some React Snippets in TS",
"description": "Code snippets for react, cypress, react-testing-lib in TS",
"version": "0.3.0",
"author": "[email protected]",
"publisher": "ErinLee",
"engines": {
"vscode": "^1.28.0"
},
"icon": "images/eee-vscode-icon.png",
"repository": {
"type": "git",
"url": "https://github.com/erin-at-work/some-snippets-vscode-extension"
},
"categories": [
"Snippets"
],
"keywords": [
"React",
"Snippet",
"React Snippets",
"React Code Snippets"
],
"contributes": {
"snippets": [
{
"language": "javascript",
"path": "./snippets/js.json"
},
{
"language": "typescript",
"path": "./snippets/js.json"
},
{
"language": "typescript",
"path": "./snippets/ts.json"
},
{
"language": "typescriptreact",
"path": "./snippets/react.json"
},
{
"language": "javascript",
"path": "./snippets/specs.json"
},
{
"language": "typescript",
"path": "./snippets/specs.json"
},
{
"language": "typescriptreact",
"path": "./snippets/react-specs.json"
}
]
}
}