-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
44 lines (44 loc) · 1.44 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
{
"name": "typescript-plugin-styled-components",
"version": "1.4.3",
"description": "TypeScript transformer for improving the debugging experience of styled-components",
"main": "dist/index.js",
"homepage": "https://github.com/Igorbek/typescript-plugin-styled-components",
"repository": {
"url": "https://github.com/Igorbek/typescript-plugin-styled-components.git",
"type": "git"
},
"author": "Igor Oleinikov <[email protected]>",
"license": "MIT",
"scripts": {
"build": "tsc",
"build:prod": "tsc --sourceMap false",
"typecheck": "tsc --noEmit",
"test:baselines": "jest --config ./jest.config.json",
"test:watch": "yarn test:baselines -- --watch",
"test": "yarn test:baselines",
"runner": "ts-node ./src/runner.ts"
},
"typings": "dist/index.d.ts",
"peerDependencies": {
"typescript": "^2.5.2 || ^3.0"
},
"devDependencies": {
"@types/jest": "^24.0.9",
"@types/jest-specific-snapshot": "^0.5.3",
"@types/node": "^7.0.31",
"@types/react": "^16.7.22",
"@types/styled-components": "^4.1.6",
"danger": "^9.1.8",
"danger-plugin-jest": "^1.3.0",
"danger-plugin-yarn": "^1.3.2",
"jest": "^24.1.0",
"jest-specific-snapshot": "^2.0.0",
"ts-jest": "24.0.0",
"ts-node": "^8.0.2",
"typescript": "^3.3.1"
},
"files": [
"dist"
]
}