Summary: Upgraded all babel libraries Reviewed By: passy Differential Revision: D23002525 fbshipit-source-id: 03d40fd688f5cdf8284cbfdd184f6b44e95bf1ea
56 lines
1.6 KiB
JSON
56 lines
1.6 KiB
JSON
{
|
|
"name": "flipper-babel-transformer",
|
|
"version": "0.52.1",
|
|
"description": "Babel transformer for Flipper plugins",
|
|
"repository": "facebook/flipper",
|
|
"main": "lib/index.js",
|
|
"flipperBundlerEntry": "src",
|
|
"types": "lib/index.d.ts",
|
|
"license": "MIT",
|
|
"bugs": "https://github.com/facebook/flipper/issues",
|
|
"dependencies": {
|
|
"@babel/core": "^7.11.1",
|
|
"@babel/generator": "^7.11.0",
|
|
"@babel/parser": "^7.11.2",
|
|
"@babel/plugin-proposal-class-properties": "^7.10.4",
|
|
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.4",
|
|
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
|
|
"@babel/plugin-proposal-optional-chaining": "^7.11.0",
|
|
"@babel/plugin-transform-flow-strip-types": "^7.10.4",
|
|
"@babel/plugin-transform-modules-commonjs": "^7.10.4",
|
|
"@babel/plugin-transform-typescript": "^7.11.0",
|
|
"@babel/preset-env": "^7.11.0",
|
|
"@babel/preset-react": "^7.10.4",
|
|
"@babel/traverse": "^7.11.0",
|
|
"@babel/types": "^7.11.0",
|
|
"@types/fs-extra": "^9.0.1",
|
|
"@types/node": "^13.7.5",
|
|
"babel-plugin-emotion": "^10.0.33",
|
|
"fs-extra": "^8.1.0",
|
|
"tslib": "^2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "26",
|
|
"jest": "^26",
|
|
"prettier": "^2.0.0",
|
|
"rimraf": "^3.0.2",
|
|
"ts-jest": "^26.0.0",
|
|
"ts-node": "^8",
|
|
"typescript": "^3.9.5"
|
|
},
|
|
"scripts": {
|
|
"reset": "rimraf lib *.tsbuildinfo",
|
|
"build": "tsc -b",
|
|
"prepack": "yarn reset && yarn build"
|
|
},
|
|
"files": [
|
|
"lib/**/*",
|
|
"src/**/*"
|
|
],
|
|
"homepage": "https://github.com/facebook/flipper",
|
|
"keywords": [
|
|
"Flipper"
|
|
],
|
|
"author": "Facebook, Inc"
|
|
}
|