You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

71 lines
2.0 KiB

{
"version": "1.13.3",
"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.15.7",
"@babel/core": "^7.15.8",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-transform-modules-commonjs": "^7.15.4",
"@babel/preset-env": "^7.15.8",
"babel-core": "7.0.0-bridge.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-test": "^0.2.1",
"jest": "^27.3.0",
"jest-file-snapshot": "^0.5.0",
"prettier": "^2.4.1",
"rimraf": "^3.0.0",
"styled-components": "^5.3.1"
},
"dependencies": {
"@babel/helper-annotate-as-pure": "^7.15.4",
"@babel/helper-module-imports": "^7.15.4",
"babel-plugin-syntax-jsx": "^6.18.0",
"lodash": "^4.17.11"
},
"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": "npm run test -- --watch",
"prepublish": "npm run clean && npm run 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"
]
}
}