forked from povalpet/atom-chai-snippets
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 812 Bytes
/
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
{
"name": "chai-snippets",
"displayName": "Chai snippets",
"description": "Chai snippets in both assert and expect varietals.",
"license" : "MIT",
"version": "0.0.1",
"icon": "images/icon.png",
"keywords": [
"chai",
"snippet",
"assert",
"expect"
],
"repository": {
"type": "git",
"url": "https://github.com/nwhatt/vs-chai-snippets"
},
"galleryBanner": {
"color": "#00b588",
"theme": "light"
},
"publisher": "nwhatt",
"engines": {
"vscode": "^1.0.0"
},
"categories": [
"Snippets"
],
"contributes": {
"snippets": [
{
"language": "javascript",
"path": "./snippets/snippets.json"
}
]
}
}