-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
92 lines (92 loc) · 2.42 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
{
"name": "vscode-angular2-component-generator",
"displayName": "Angular2 Component Generator",
"description": "Generates angular2 component files (html, css, typescript -> template, stylesheet, component.ts + module.ts)",
"version": "0.0.3",
"publisher": "dbaikov",
"author": {
"name": "Dmytro Baikov",
"email": "dmitriybaikov@gmail.com"
},
"homepage": "https://github.com/dbaikov/vscode-angular2-component-generator",
"galleryBanner": {
"color": "#0273D4",
"theme": "dark"
},
"repository": {
"type": "git",
"url": "https://github.com/dbaikov/vscode-angular2-component-generator.git"
},
"bugs": {
"url": "https://github.com/dbaikov/vscode-angular2-component-generator/issues",
"email": "dmitriybaikov@gmail.com"
},
"license": "MIT",
"engines": {
"vscode": "^1.5.0"
},
"categories": [
"Other"
],
"keywords": [
"vscode-angular2",
"angular2",
"angular2 component",
"angular2 generate component",
"vscode angular",
"angular",
"angular component",
"angular generate component",
"typescript"
],
"activationEvents": [
"onCommand:extension.genAngular2ComponentFiles"
],
"main": "./out/src/extension",
"icon": "assets/images/icon.png",
"contributes": {
"configuration": {
"type": "object",
"title": "ng2ComponentGenerator",
"properties": {
"ng2ComponentGenerator.config": {
"type": "object",
"description": "vscode-angular2-component-generator configuration object. See: https://github.com/dbaikov/vscode-angular2-component-generator/blob/master/README.md for more information."
}
}
},
"commands": [
{
"command": "extension.genAngular2ComponentFiles",
"title": "New Angular2 Component"
}
],
"menus": {
"explorer/context": [
{
"command": "extension.genAngular2ComponentFiles",
"group": "navigation"
}
]
}
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"typescript": "^2.0.3",
"vscode": "^1.0.0",
"mocha": "^2.3.3",
"@types/node": "^6.0.40",
"@types/mocha": "^2.2.32"
},
"dependencies": {
"change-case": "^3.0.0",
"fs": "0.0.1-security",
"fs-extra": "^0.30.0",
"rxjs": "^5.0.0-rc.1",
"lodash": "^4.17.4"
}
}