This repository was archived by the owner on Jul 23, 2025. It is now read-only.
forked from microsoft/typescript-lit-html-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.25 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.25 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
{
"name": "@enhancedjs/typescript-html-plugin",
"version": "0.0.6",
"description": "TypeScript language service plugin that adds IntelliSense for HTML tagged templates.",
"keywords": [
"typescript",
"html",
"template",
"string"
],
"main": "lib/index.js",
"author": "Microsoft",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/enhancedjs/typescript-html-plugin.git"
},
"bugs": {
"url": "https://github.com/enhancedjs/typescript-html-plugin/issues"
},
"dependencies": {
"typescript-styled-plugin": "^0.13.0",
"typescript-template-language-service-decorator": "^2.2.0",
"vscode-html-languageservice": "^3.0.3",
"vscode-languageserver-types": "^3.13.0"
},
"files": [
"lib"
],
"devDependencies": {
"@types/node": "^12.12.47",
"chai": "^4.1.2",
"glob": "^7.1.3",
"mocha": "^8.0.1",
"tslint": "^6.1.2",
"typescript": "^3.9.5"
},
"scripts": {
"prepublishOnly": "npm run compile",
"compile": "./node_modules/.bin/tsc -p .",
"watch:compile": "./node_modules/.bin/tsc --watch -p .",
"e2e": "./node_modules/.bin/mocha e2e/tests --slow 2000 --timeout 10000",
"lint": "./node_modules/.bin/tslint -c tslint.json -p tsconfig.json"
}
}