Files
flipper/desktop/babel-transformer/package.json
Pascal Hartig 4fd8e0b8ca Tuesday dep bump
Summary: Paying forward for my upcoming oncall.

Reviewed By: nikoant

Differential Revision: D28960593

fbshipit-source-id: fb257c451b666191d8443f992d95d5d136ed22ff
2021-06-09 01:59:12 -07:00

56 lines
1.7 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.14.3",
"@babel/generator": "^7.14.3",
"@babel/parser": "^7.14.4",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.2",
"@babel/plugin-proposal-object-rest-spread": "^7.14.4",
"@babel/plugin-proposal-optional-chaining": "^7.14.2",
"@babel/plugin-transform-flow-strip-types": "^7.13.0",
"@babel/plugin-transform-modules-commonjs": "^7.13.8",
"@babel/plugin-transform-typescript": "^7.14.4",
"@babel/preset-env": "^7.14.4",
"@babel/preset-react": "^7.13.13",
"@babel/traverse": "^7.14.2",
"@babel/types": "^7.14.4",
"@emotion/babel-plugin": "^11.3.0",
"@types/fs-extra": "^9.0.11",
"@types/node": "^15.12.2",
"fs-extra": "^10.0.0",
"tslib": "^2"
},
"devDependencies": {
"@types/jest": "26.0.23",
"jest": "^26.6.3",
"prettier": "^2.3.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.6",
"ts-node": "^9.1.1",
"typescript": "^4.3.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"
}