-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
132 lines (132 loc) · 3.68 KB
/
package.json
File metadata and controls
132 lines (132 loc) · 3.68 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
{
"name": "angular-component-extractor",
"displayName": "Angular Component Extractor",
"description": "Helper to extract components from templates in Angular",
"version": "0.1.0",
"preview": true,
"publisher": "PKief",
"engines": {
"vscode": "^1.55.0"
},
"icon": "images/logo.png",
"galleryBanner": {
"color": "#eff1f3",
"theme": "light"
},
"license": "SEE LICENSE IN LICENSE.md",
"homepage": "https://github.com/PKief/vscode-angular-component-extractor/blob/main/README.md",
"repository": {
"type": "git",
"url": "https://github.com/PKief/vscode-angular-component-extractor.git"
},
"extensionDependencies": [
"angular.ng-template"
],
"extensionKind": [
"workspace"
],
"bugs": {
"url": "https://github.com/PKief/vscode-angular-component-extractor/issues"
},
"categories": [
"Other"
],
"keywords": [
"Angular",
"Angular CLI",
"Components",
"HTML",
"TypeScript"
],
"activationEvents": [
"onLanguage:html"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "angular-component-extractor.extract-component",
"title": "Angular: Extract component"
}
],
"configuration": {
"type": "object",
"title": "Angular Component Extractor",
"properties": {
"angular-component-extractor.default-prefix": {
"type": "string",
"default": "app",
"description": "Prefix of an Angular component"
},
"angular-component-extractor.log-level": {
"type": "string",
"enum": [
"off",
"fatal",
"error",
"warn",
"info",
"debug",
"trace"
],
"default": "warn",
"description": "The verbosity of logging. The Order is off < fatal < error < warn < info < debug < trace.",
"scope": "resource"
},
"angular-component-extractor.source-location-logging": {
"type": "boolean",
"default": false,
"description": "Should Source Code Location Info be added to log entries, DANGER - May be very slow, only use in debugging scenarios",
"scope": "resource"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "webpack",
"watch": "webpack --watch",
"watch:tsc": "tsc -w",
"package": "webpack --mode production --devtool hidden-source-map",
"lint": "eslint src e2e test --ext ts",
"test": "npm run test:unit && npm run test:e2e",
"test:unit": "nyc mocha",
"test:unit:watch": "npm run test:unit -- -w",
"pretest:e2e": "npm run test:e2e:compile",
"test:e2e": "node ./out/e2e/runTest.js",
"test:e2e:compile": "tsc -p ./",
"preinstall": "node ./tools/npm/check-npm.js"
},
"devDependencies": {
"@babel/types": "^7.14.2",
"@types/chai": "^4.2.18",
"@types/glob": "^7.1.3",
"@types/mocha": "^8.0.4",
"@types/node": "^12.11.7",
"@types/vscode": "^1.55.0",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"chai": "^4.3.4",
"chai-exclude": "^2.0.3",
"eslint": "^7.19.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"glob": "^7.1.6",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"ts-loader": "^8.0.14",
"ts-node": "^9.1.1",
"ts-sinon": "^2.0.1",
"typescript": "^4.1.3",
"vscode-test": "^1.5.0",
"webpack": "^5.19.0",
"webpack-cli": "^4.4.0"
},
"dependencies": {
"@vscode-logging/logger": "^1.2.3",
"angular-html-parser": "^1.8.0",
"babylon": "^6.18.0",
"recast": "^0.20.4"
}
}