UNPKG

1.96 kBJSONView Raw
1{
2 "version": "2.1.4",
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 "homepage": "https://styled-components.com/docs/tooling#babel-plugin",
7 "contributors": [
8 "Vladimir Danchenkov <vladimir.danchenkov@gmail.com>",
9 "Max Stoiber <contact@mxstbr.com>",
10 "Phil Pluckthun <phil@kitten.sh>",
11 "Evan Jacobs <probablyup@gmail.com>"
12 ],
13 "main": "lib/index.js",
14 "files": [
15 "lib",
16 "LICENSE.md",
17 "README.md"
18 ],
19 "license": "MIT",
20 "devDependencies": {
21 "@babel/cli": "^7.22.5",
22 "@babel/core": "^7.22.5",
23 "@babel/plugin-proposal-class-properties": "^7.18.6",
24 "@babel/plugin-transform-modules-commonjs": "^7.22.5",
25 "@babel/preset-env": "^7.22.5",
26 "babel-test": "^0.2.4",
27 "jest": "^29.5.0",
28 "jest-file-snapshot": "^0.5.0",
29 "prettier": "^2.8.8",
30 "rimraf": "^5.0.1",
31 "styled-components": "^6.0.0-rc.6"
32 },
33 "dependencies": {
34 "@babel/helper-annotate-as-pure": "^7.22.5",
35 "@babel/helper-module-imports": "^7.22.5",
36 "@babel/plugin-syntax-jsx": "^7.22.5",
37 "lodash": "^4.17.21",
38 "picomatch": "^2.3.1"
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": "yarn test -- --watch",
49 "prepublish": "yarn clean && yarn 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 "packageManager": "yarn@3.5.0"
69}