-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
67 lines (67 loc) · 1.54 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
64
65
66
67
{
"name": "react-emotion-snippets",
"displayName": "React Emotion Snippets",
"description": "Useful snippets for creating React Emotion styles.",
"version": "0.0.0-semantically-released",
"publisher": "mskelton",
"author": "Mark Skelton",
"repository": {
"type": "git",
"url": "https://github.com/mskelton/vscode-react-emotion-snippets.git"
},
"bugs": {
"url": "https://github.com/mskelton/vscode-react-emotion-snippets/issues"
},
"homepage": "https://github.com/mskelton/vscode-react-emotion-snippets#readme",
"license": "ISC",
"engines": {
"vscode": "^1.40.0"
},
"categories": [
"Snippets"
],
"keywords": [
"snippets",
"emotion",
"react"
],
"icon": "static/icon.png",
"contributes": {
"snippets": [
{
"language": "javascript",
"path": "./snippets/base.json"
},
{
"language": "javascriptreact",
"path": "./snippets/base.json"
},
{
"language": "typescript",
"path": "./snippets/base.json"
},
{
"language": "typescriptreact",
"path": "./snippets/base.json"
},
{
"language": "javascript",
"path": "./snippets/js.json"
},
{
"language": "javascriptreact",
"path": "./snippets/js.json"
},
{
"language": "typescriptreact",
"path": "./snippets/ts.json"
}
]
},
"devDependencies": {
"prettier": "^2.0.5",
"semantic-release": "^17.2.3",
"semantic-release-vsce": "^3.0.1",
"vsce": "^1.78.0"
}
}