Files
flipper/desktop/babel-transformer/package.json
Pascal Hartig 7135456434 Dep bump
Summary: Get ahead of dependabot by bundling a few small bumps.

Reviewed By: nikoant

Differential Revision: D33739602

fbshipit-source-id: 1482c062493a4214da81cbf5daf408aa382fb0ac
2022-01-24 04:57:29 -08:00

50 lines
1.6 KiB
JSON

{
"name": "flipper-babel-transformer",
"version": "0.0.0",
"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.16.12",
"@babel/generator": "^7.16.8",
"@babel/parser": "^7.16.12",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.7",
"@babel/plugin-proposal-object-rest-spread": "^7.16.7",
"@babel/plugin-proposal-optional-chaining": "^7.16.7",
"@babel/plugin-transform-flow-strip-types": "^7.16.7",
"@babel/plugin-transform-modules-commonjs": "^7.16.7",
"@babel/plugin-transform-typescript": "^7.16.8",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/traverse": "^7.16.10",
"@babel/types": "^7.16.7",
"@emotion/babel-plugin": "^11.7.2",
"@types/fs-extra": "^9.0.13",
"@types/node": "^16.11.7",
"fs-extra": "^10.0.0",
"tslib": "^2.3.1"
},
"devDependencies": {
"rimraf": "^3.0.2"
},
"scripts": {
"reset": "rimraf lib *.tsbuildinfo",
"build": "tsc -b && cd .. && ./ts-node ./scripts/compute-package-checksum.ts -d ./babel-transformer -o ./lib/checksum.txt",
"prepack": "yarn reset && yarn build"
},
"files": [
"lib/**/*",
"src/**/*"
],
"homepage": "https://github.com/facebook/flipper",
"keywords": [
"Flipper"
],
"author": "Facebook, Inc"
}