-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
105 lines (105 loc) · 3 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
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "vsc-angular-cli",
"displayName": "vsc-angular-cli",
"description": "run angular-cli commands from command pannel",
"version": "0.2.0",
"publisher": "web-dave",
"engines": {
"vscode": "^1.0.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.ngNew",
"onCommand:extension.ngDoc",
"onCommand:extension.ngLint",
"onCommand:extension.ngServe",
"onCommand:extension.ngBuild",
"onCommand:extension.ngVersion",
"onCommand:extension.ngFormat",
"onCommand:extension.ngE2e",
"onCommand:extension.ngCompletion",
"onCommand:extension.ngTest",
"onCommand:extension.ngGenerate",
"onCommand:extension.ngHelp",
"onCommand:extension.ngEject"
],
"bugs": {
"url": "https://github.com/web-dave/vsc-angular-cli/issues"
},
"homepage": "https://github.com/web-dave/vsc-angular-cli/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/web-dave/vsc-angular-cli.git"
},
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "extension.ngNew",
"title": "ng new"
},
{
"command": "extension.ngDoc",
"title": "ng doc"
},
{
"command": "extension.ngLint",
"title": "ng lint"
},
{
"command": "extension.ngServe",
"title": "ng serve"
},
{
"command": "extension.ngBuild",
"title": "ng build"
},
{
"command": "extension.ngVersion",
"title": "ng version"
},
{
"command": "extension.ngFormat",
"title": "ng format"
},
{
"command": "extension.ngE2e",
"title": "ng e2e"
},
{
"command": "extension.ngCompletion",
"title": "ng completion"
},
{
"command": "extension.ngGenerate",
"title": "ng generate"
},
{
"command": "extension.ngTest",
"title": "ng test"
},
{
"command": "extension.ngHelp",
"title": "ng help"
},
{
"command": "extension.ngEject",
"title": "ng eject"
}
]
},
"scripts": {
"vscode:prepublish": "node ./node_modules/vscode/bin/compile",
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"typescript": "^1.8.5",
"vscode": "^0.11.0"
},
"dependencies": {
"run-in-terminal": "^0.0.2"
}
}