forked from microsoft/typescript-styled-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1016 Bytes
/
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
{
"name": "typescript-styled-plugin",
"version": "0.0.5",
"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": {
"vscode-css-languageservice": "^2.1.4"
},
"files": [
"lib"
],
"devDependencies": {
"@types/node": "^7.0.22",
"chai": "^4.1.2",
"glob": "^7.1.2",
"mocha": "^3.5.3",
"tslint": "^5.3.2",
"typescript": "^2.5.2"
},
"peerDependencies": {
"typescript": "^2.3.0"
},
"scripts": {
"compile": "tsc -p .",
"watch:compile": "tsc --watch -p .",
"e2e": "./node_modules/.bin/mocha e2e/tests"
}
}