-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
40 lines (40 loc) · 901 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
39
40
{
"name": "Angular1",
"publisher": "johnpapa",
"displayName": "Angular 1 JavaScript and TypeScript Snippets",
"description": "Angular 1 JavaScript and TypeScript snippets",
"icon": "images/angular-shield.png",
"galleryBanner": {
"color": "#0273D4",
"theme": "dark"
},
"license": "SEE LICENSE IN LICENSE.md",
"repository": {
"type": "git",
"url": "https://github.com/johnpapa/vscode-angular1-snippets.git"
},
"version": "0.2.1",
"engines": {
"vscode": "0.10.x"
},
"scripts": {
"package": "npx vsce package",
"publish": "npx vsce publish"
},
"extensionKind": "ui",
"categories": [
"Snippets"
],
"contributes": {
"snippets": [
{
"language": "javascript",
"path": "./snippets/javascript.json"
},
{
"language": "typescript",
"path": "./snippets/typescript.json"
}
]
}
}