-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
174 lines (174 loc) · 5.76 KB
/
package.json
File metadata and controls
174 lines (174 loc) · 5.76 KB
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
{
"name": "angular-component-editor",
"displayName": "angular-component-editor",
"description": "open all files of an angular component with a simple shortcut!",
"private": true,
"version": "0.1.6",
"publisher": "mvp-angular",
"icon": "images/logo.png",
"license": "MIT",
"engines": {
"vscode": "^1.51.0"
},
"galleryBanner": {
"color": "#232323",
"theme": "dark"
},
"repository": {
"type": "git",
"url": "https://github.com/mvp-angular/angular-component-editor"
},
"bugs": {
"url": "https://github.com/mvp-angular/angular-component-editor/issues"
},
"homepage": "https://github.com/mvp-angular/angular-component-editor/blob/master/README.md",
"keywords": [
"angular",
"keybinding",
"keybindings",
"multi-root ready",
"split",
"vscode"
],
"categories": [
"Other"
],
"activationEvents": [
"onCommand:angular-component-editor.execute"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "angular-component-editor.execute",
"title": "Angular Component Editor: Open in Split View"
}
],
"keybindings": [
{
"command": "angular-component-editor.execute",
"key": "strg+shift+o",
"mac": "shift+alt+s"
}
],
"configuration": {
"title": "Angular Component Editor Configuration",
"type": "object",
"properties": {
"angular-component-editor.enable.template": {
"type": "boolean",
"default": true,
"description": "Whether the template file should be included when split viewing the component files"
},
"angular-component-editor.enable.script": {
"type": "boolean",
"default": true,
"description": "Whether the script file should be included when split viewing the component files"
},
"angular-component-editor.enable.style": {
"type": "boolean",
"default": true,
"description": "Whether the stylesheet file should be included when split viewing the component files"
},
"angular-component-editor.enable.spec": {
"type": "boolean",
"default": true,
"description": "Whether the spec file should be included when split viewing the component files"
},
"angular-component-editor.files.template": {
"type": "array",
"default": [
"html"
],
"description": "The list of file extensions to try and open for the component template (checks in order)"
},
"angular-component-editor.files.script": {
"type": "array",
"default": [
"ts"
],
"description": "The list of file extensions to try and open for the component script (checks in order)"
},
"angular-component-editor.files.style": {
"type": "array",
"default": [
"css",
"scss",
"sass",
"less"
],
"description": "The list of file extensions to try and open for the component stylesheet (checks in order)"
},
"angular-component-editor.files.spec": {
"type": "array",
"default": [
"spec.ts"
],
"description": "The list of file extensions to try and open for the component specification (checks in order)"
},
"angular-component-editor.locations.template": {
"type": "integer",
"default": 2,
"description": "In which tab the file should be opended (available options: https://code.visualstudio.com/api/references/vscode-api#ViewColumn)"
},
"angular-component-editor.locations.script": {
"type": "integer",
"default": 1,
"description": "In which tab the file should be opended (available options: https://code.visualstudio.com/api/references/vscode-api#ViewColumn)"
},
"angular-component-editor.locations.style": {
"type": "integer",
"default": 4,
"description": "In which tab the file should be opended (available options: https://code.visualstudio.com/api/references/vscode-api#ViewColumn)"
},
"angular-component-editor.locations.spec": {
"type": "integer",
"default": 3,
"description": "In which tab the file should be opended (available options: https://code.visualstudio.com/api/references/vscode-api#ViewColumn)"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "webpack --devtool nosources-source-map --config ./build/node-extension.webpack.config.js",
"watch": "webpack --watch --devtool nosources-source-map --info-verbosity verbose --config ./build/node-extension.webpack.config.js",
"package": "webpack --mode production --config ./build/node-extension.webpack.config.js",
"test-compile": "tsc -p ./",
"test-watch": "tsc -watch -p ./",
"pretest": "npm run test-compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/mocha": "^8.0.0",
"@types/node": "^12.11.7",
"@types/vscode": "^1.51.0",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"eslint": "^7.9.0",
"glob": "^7.1.6",
"mocha": "^8.1.3",
"ts-loader": "^8.0.3",
"typescript": "^4.0.2",
"vscode-test": "^1.4.0",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
},
"release": {
"branches": "master",
"verifyConditions": [
"@semantic-release/github"
],
"publish": [
"@semantic-release/github"
],
"success": [
"@semantic-release/github"
],
"fail": [
"@semantic-release/github"
]
}
}