Summary: This updates minor and patch level dependencies. Frustratingly, I had to revert a bunch of changes in that version range that still caused incompatibilities and test failures. If I find time, I'll dig a bit deeper. Reviewed By: ivanmisuno Differential Revision: D48433210 fbshipit-source-id: 9ab12e774c1992d4f22cc1428d34f102ce820b75
33 lines
798 B
JSON
33 lines
798 B
JSON
{
|
|
"name": "eslint-plugin-flipper",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"description": "Custom ESLint rules for Flipper",
|
|
"repository": "facebook/flipper",
|
|
"main": "lib/index.js",
|
|
"flipperBundlerEntry": "src",
|
|
"types": "lib/index.d.ts",
|
|
"license": "MIT",
|
|
"bugs": "https://github.com/facebook/flipper/issues",
|
|
"dependencies": {
|
|
"@typescript-eslint/experimental-utils": "^5.22.0",
|
|
"@typescript-eslint/parser": "^5.55.0",
|
|
"fs-extra": "^11.1.1"
|
|
},
|
|
"devDependencies": {},
|
|
"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"
|
|
}
|