This repository has been archived by the owner on Apr 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.48 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
{
"name": "ngx-plantago",
"displayName": "ngx-plantago",
"icon": "images/icon.png",
"description": "Extension for migration your Angular.js code to Angular 7",
"version": "0.0.1",
"repository": "https://github.com/daniloff200/ngx-plantago",
"publisher": "daniloff200",
"engines": {
"vscode": "^1.31.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.ngx-plantago"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "extension.ngx-plantago",
"title": "ngx-plantago"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile && npm run copy",
"copy": "cp -r node_modules out/node_modules/",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/esprima": "4.0.2",
"@types/mocha": "^2.2.42",
"@types/node": "^10.12.21",
"@types/prettier": "^1.16.1",
"tslint": "^5.12.1",
"typescript": "^3.3.1",
"vscode": "^1.1.28"
},
"dependencies": {
"@types/cheerio": "^0.22.10",
"@types/htmlparser2": "^3.7.31",
"@types/js-beautify": "^1.8.0",
"@types/lodash": "^4.14.121",
"@types/parse5": "^5.0.0",
"cheerio": "^1.0.0-rc.1",
"esprima": "4.0.1",
"js-to-ts-converter": "^0.16.2",
"js-beautify": "^1.9.0",
"lodash": "^4.17.21",
"pascal-case": "^2.0.1",
"parse5": "5.1.0",
"prettier": "^1.16.4",
"strip-comments": "1.0.2"
}
}