forked from microsoft/typescript-styled-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.33 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
{
"name": "typescript-styled-plugin",
"version": "0.15.0",
"description": "TypeScript language service plugin that adds IntelliSense for styled components",
"keywords": [
"TypeScript",
"styled",
"styled-components",
"styled components",
"css"
],
"main": "lib/index.js",
"author": "Microsoft",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/typescript-styled-plugin.git"
},
"bugs": {
"url": "https://github.com/Microsoft/typescript-styled-plugin/issues"
},
"dependencies": {
"typescript-template-language-service-decorator": "^2.2.0",
"vscode-css-languageservice": "^4.0.2",
"vscode-languageserver-types": "^3.13.0",
"vscode-emmet-helper": "1.2.11"
},
"files": [
"lib"
],
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/mocha": "^5.2.4",
"@types/node": "^7.0.22",
"chai": "^4.1.2",
"glob": "^7.1.2",
"mocha": "^5.2.0",
"tslint": "^5.19.0",
"typescript": "^3.6.4"
},
"scripts": {
"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",
"unit": "./node_modules/.bin/mocha lib/test"
}
}