-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
93 lines (93 loc) · 2.33 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "ng-zorro-vscode",
"displayName": "NG-ZORRO Snippets",
"description": "Snippets based on NG-ZORRO",
"version": "18.0.1",
"icon": "ng-zorro.png",
"publisher": "cipchk",
"license": "MIT",
"licenseUrl": "LICENSE",
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"build": "gulp build",
"watch": "gulp watch",
"resource": "bash ./scripts/resource/build.sh && node scripts/snippet.js",
"release": "npm run resource && gulp package"
},
"main": "./out/extension",
"homepage": "https://github.com/cipchk/ng-zorro-vscode/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/cipchk/ng-zorro-vscode.git"
},
"bugs": {
"url": "https://github.com/cipchk/ng-zorro-vscode/issues",
"email": "[email protected]"
},
"engines": {
"vscode": "^1.30.x",
"node": ">=16.0.0 <17.0.0"
},
"galleryBanner": {
"color": "#ffffff",
"theme": "light"
},
"categories": [
"Programming Languages",
"Snippets"
],
"activationEvents": [
"onLanguage:typescript",
"onLanguage:html"
],
"contributes": {
"snippets": [
{
"language": "html",
"path": "./snippets.json"
}
],
"configuration": {
"title": "NG-ZORRO Extension Configuration",
"properties": {
"ng-zorro-vscode.hover": {
"description": "%ng-zorro-vscode.hover%",
"type": "boolean",
"default": true
},
"ng-zorro-vscode.inlineTemplate": {
"description": "%ng-zorro-vscode.inlineTemplate%",
"type": "boolean",
"default": true
}
}
}
},
"dependencies": {
"vscode-nls": "^5.0.0"
},
"devDependencies": {
"@types/node": "^12.0.10",
"@types/mocha": "^8.2.2",
"@types/chai": "^4.1.7",
"@types/markdown-it": "^12.0.1",
"ts-node": "^8.3.0",
"mocha": "^8.3.2",
"chai": "^4.2.0",
"yaml-front-matter": "^4.0.0",
"markdown-it": "^12.0.6",
"vscode-snippet-generator": "^1.3.2",
"typescript": "^4.2.4",
"vscode": "^1.1.26",
"klaw-sync": "^6.0.0",
"vsce": "^1.81.1",
"gulp": "^4.0.2",
"gulp-filter": "^6.0.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-typescript": "^5.0.1",
"run-sequence": "^2.2.1",
"del": "^6.0.0",
"event-stream": "^4.0.1",
"vscode-nls-dev": "^3.3.2"
}
}