UNPKG

1.6 kBJSONView Raw
1{
2 "version": "1.9.0",
3 "name": "babel-plugin-styled-components",
4 "description": "Improve the debugging experience and add server-side rendering support to styled-components",
5 "repository": "styled-components/babel-plugin-styled-components",
6 "contributors": [
7 "Vladimir Danchenkov <vladimir.danchenkov@gmail.com>",
8 "Max Stoiber <contact@mxstbr.com>",
9 "Phil Pluckthun <phil@kitten.sh>",
10 "Evan Jacobs <probablyup@gmail.com>"
11 ],
12 "main": "lib/index.js",
13 "files": [
14 "lib"
15 ],
16 "license": "MIT",
17 "devDependencies": {
18 "@babel/cli": "^7.0.0",
19 "@babel/core": "^7.0.0",
20 "@babel/plugin-proposal-class-properties": "^7.0.0",
21 "@babel/preset-env": "^7.0.0",
22 "babel-core": "7.0.0-bridge.0",
23 "jest": "^23.6.0",
24 "prettier": "^1.14.2",
25 "rimraf": "^2.6.2",
26 "styled-components": "^4.0.0"
27 },
28 "dependencies": {
29 "@babel/helper-annotate-as-pure": "^7.0.0",
30 "@babel/plugin-syntax-jsx": "^7.0.0",
31 "lodash": "^4.17.10"
32 },
33 "resolutions": {
34 "babel-core": "7.0.0-bridge.0"
35 },
36 "peerDependencies": {
37 "styled-components": ">= 2"
38 },
39 "scripts": {
40 "clean": "rimraf lib",
41 "style": "prettier --write src/**/*.js",
42 "build": "babel src -d lib",
43 "test": "jest",
44 "test:watch": "npm run test -- --watch",
45 "prepublish": "npm run clean && npm run build"
46 },
47 "keywords": [
48 "styled-components",
49 "css-in-js",
50 "babel-plugin",
51 "server-side rendering",
52 "ssr",
53 "displayName"
54 ],
55 "jest": {
56 "snapshotSerializers": [
57 "<rootDir>/test/whitespaceTrimmingSerializer.js"
58 ]
59 }
60}