UNPKG

1.41 kBJSONView Raw
1{
2 "version": "1.6.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": "^6.24.0",
19 "babel-plugin-transform-class-properties": "^6.24.1",
20 "babel-preset-env": "^1.2.2",
21 "jest": "^17.0.3",
22 "prettier": "^1.12.1",
23 "rimraf": "^2.6.2",
24 "styled-components": "^3.4.5"
25 },
26 "dependencies": {
27 "lodash": "^4.17.10",
28 "semver": "^5.5.1"
29 },
30 "peerDependencies": {
31 "styled-components": ">= 2"
32 },
33 "scripts": {
34 "clean": "rimraf lib",
35 "style": "prettier --write src/**/*.js",
36 "build": "babel src -d lib",
37 "test": "jest",
38 "test:watch": "npm run test -- --watch",
39 "prepublish": "npm run clean && npm run build"
40 },
41 "keywords": [
42 "styled-components",
43 "css-in-js",
44 "babel-plugin",
45 "server-side rendering",
46 "ssr",
47 "displayName"
48 ],
49 "jest": {
50 "snapshotSerializers": [
51 "<rootDir>/test/whitespaceTrimmingSerializer.js"
52 ]
53 }
54}