UNPKG

1.89 kBJSONView Raw
1{
2 "version": "1.10.1",
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.4.4",
19 "@babel/core": "^7.4.5",
20 "@babel/plugin-proposal-class-properties": "^7.4.4",
21 "@babel/preset-env": "^7.4.5",
22 "babel-core": "7.0.0-bridge.0",
23 "babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
24 "babel-test": "^0.2.1",
25 "jest": "^24.8.0",
26 "jest-file-snapshot": "^0.3.6",
27 "prettier": "^1.18.2",
28 "rimraf": "^2.6.3",
29 "styled-components": "^4.3.1"
30 },
31 "dependencies": {
32 "@babel/helper-annotate-as-pure": "^7.0.0",
33 "@babel/helper-module-imports": "^7.0.0",
34 "babel-plugin-syntax-jsx": "^6.18.0",
35 "lodash": "^4.17.11"
36 },
37 "resolutions": {
38 "babel-core": "7.0.0-bridge.0"
39 },
40 "peerDependencies": {
41 "styled-components": ">= 2"
42 },
43 "scripts": {
44 "clean": "rimraf lib",
45 "style": "prettier --write src/**/*.js",
46 "build": "babel src -d lib",
47 "test": "jest",
48 "test:watch": "npm run test -- --watch",
49 "prepublish": "npm run clean && npm run build"
50 },
51 "keywords": [
52 "styled-components",
53 "css-in-js",
54 "babel-plugin",
55 "server-side rendering",
56 "ssr",
57 "displayName"
58 ],
59 "jest": {
60 "testEnvironment": "node",
61 "snapshotSerializers": [
62 "<rootDir>/test/whitespaceTrimmingSerializer.js"
63 ],
64 "watchPathIgnorePatterns": [
65 "fixtures\\/[^/]+\\/(output|error)\\.js"
66 ]
67 }
68}