-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
38 lines (38 loc) · 849 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
38
{
"name": "vscode-hapijs-snippets",
"publisher": "deerawan",
"version": "3.0.0",
"displayName": "Hapi.js Snippets",
"description": "Hapi.js Snippets for Javascript ES6",
"license": "See License in LICENSE.md",
"icon": "images/hapijs-logo.png",
"galleryBanner": {
"color": "#ba6907",
"theme": "dark"
},
"repository": {
"type": "git",
"url": "https://github.com/deerawan/vscode-hapijs-snippets"
},
"engines": {
"vscode": "0.10.x"
},
"categories": [
"Snippets"
],
"contributes": {
"snippets": [
{
"language": "javascript",
"path": "./snippets/javascript.json"
}
]
},
"devDependencies": {
"all-contributors-cli": "^5.3.0"
},
"scripts": {
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
}
}