forked from styled-components/babel-plugin-styled-components
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.21 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.21 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"version": "1.10.7",
"name": "@hookydev/babel-plugin-styled-components",
"author": "hookydev",
"description": "Forked version that can work with xstyled - Improve the debugging experience and add server-side rendering support to styled-components",
"repository": {
"type": "git",
"url": "git+https://github.com/hookydev/babel-plugin-styled-components.git"
},
"contributors": [
"Vladimir Danchenkov <vladimir.danchenkov@gmail.com>",
"Max Stoiber <contact@mxstbr.com>",
"Phil Pluckthun <phil@kitten.sh>",
"Evan Jacobs <probablyup@gmail.com>"
],
"main": "lib/index.js",
"files": [
"lib"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/hookydev/babel-plugin-styled-components/issues"
},
"homepage": "https://github.com/hookydev/babel-plugin-styled-components#readme",
"directories": {
"lib": "lib",
"test": "test"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"babel-core": "7.0.0-bridge.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-test": "^0.2.1",
"jest": "^25.1.0",
"jest-file-snapshot": "^0.3.6",
"prettier": "^1.18.2",
"rimraf": "^3.0.0",
"styled-components": "^5.0.0"
},
"dependencies": {
"@babel/helper-annotate-as-pure": "^7.0.0",
"@babel/helper-module-imports": "^7.0.0",
"babel-plugin-syntax-jsx": "^6.18.0",
"lodash": "^4.17.11"
},
"resolutions": {
"babel-core": "7.0.0-bridge.0"
},
"peerDependencies": {
"styled-components": ">= 2"
},
"scripts": {
"clean": "rimraf lib",
"style": "prettier --write src/**/*.js",
"build": "babel src -d lib",
"test": "jest",
"test:watch": "npm run test -- --watch",
"prepublish": "npm run clean && npm run build"
},
"keywords": [
"styled-components",
"css-in-js",
"babel-plugin",
"server-side rendering",
"ssr",
"displayName"
],
"jest": {
"testEnvironment": "node",
"snapshotSerializers": [
"<rootDir>/test/whitespaceTrimmingSerializer.js"
],
"watchPathIgnorePatterns": [
"fixtures\\/[^/]+\\/(output|error)\\.js"
]
}
}