73 lines
2.0 KiB
JSON
73 lines
2.0 KiB
JSON
|
{
|
||
|
"version": "2.1.1",
|
||
|
"name": "babel-plugin-styled-components",
|
||
|
"description": "Improve the debugging experience and add server-side rendering support to styled-components",
|
||
|
"repository": "styled-components/babel-plugin-styled-components",
|
||
|
"homepage": "https://styled-components.com/docs/tooling#babel-plugin",
|
||
|
"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",
|
||
|
"devDependencies": {
|
||
|
"@babel/cli": "^7.16.0",
|
||
|
"@babel/core": "^7.16.0",
|
||
|
"@babel/plugin-proposal-class-properties": "^7.16.0",
|
||
|
"@babel/plugin-transform-modules-commonjs": "^7.16.0",
|
||
|
"@babel/preset-env": "^7.16.4",
|
||
|
"babel-core": "7.0.0-bridge.0",
|
||
|
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
|
||
|
"babel-test": "^0.2.1",
|
||
|
"jest": "^27.3.1",
|
||
|
"jest-file-snapshot": "^0.5.0",
|
||
|
"prettier": "^2.4.1",
|
||
|
"rimraf": "^3.0.0",
|
||
|
"styled-components": "^5.3.3"
|
||
|
},
|
||
|
"dependencies": {
|
||
|
"@babel/helper-annotate-as-pure": "^7.16.0",
|
||
|
"@babel/helper-module-imports": "^7.16.0",
|
||
|
"babel-plugin-syntax-jsx": "^6.18.0",
|
||
|
"lodash": "^4.17.21",
|
||
|
"picomatch": "^2.3.0"
|
||
|
},
|
||
|
"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": "yarn test -- --watch",
|
||
|
"prepublish": "yarn clean && yarn 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"
|
||
|
]
|
||
|
},
|
||
|
"packageManager": "yarn@3.5.0"
|
||
|
}
|