-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 1.78 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
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "smart-angular-vscode-snippets",
"publisher": "SmartUI",
"displayName": "Angular Snippets for Smart UI Components",
"description": "Angular version 9 snippets for Smart UI",
"version": "9.1.2",
"icon": "images/angular-shield.png",
"galleryBanner": {
"color": "#0273D4",
"theme": "dark"
},
"license": "SEE LICENSE IN LICENSE.md",
"repository": {
"type": "git",
"url": "https://github.com/htmlelements/vscode-angular-snippets.git"
},
"keywords": [
"Angular",
"TypeScript",
"HTML"
],
"engines": {
"vscode": "^1.40.0"
},
"scripts": {
"package": "npx vsce package",
"compile": "tsc -watch -p ./",
"publish": "npx vsce publish",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"extensionKind": [
"ui",
"workspace"
],
"main": "./out/src/extension",
"categories": [
"Snippets",
"Other"
],
"activationEvents": [
"onCommand:angular.configureExpressServer"
],
"contributes": {
"commands": [
{
"command": "angular.configureExpressServer",
"title": "Add Node.js express file to workspace",
"description": "Add Node.js express file",
"category": "Express"
}
],
"jsonValidation": [
{
"fileMatch": "manifest.json",
"url": "http://json.schemastore.org/web-manifest"
}
],
"snippets": [
{
"language": "typescript",
"path": "./snippets/typescript.json"
},
{
"language": "javascript",
"path": "./snippets/javascript.json"
},
{
"language": "html",
"path": "./snippets/html.json"
}
]
},
"devDependencies": {
"@types/node": "^8.10.59",
"typescript": "^2.9.2",
"vscode": "^1.1.36"
},
"dependencies": {}
}