Summary: Trying to get ahead of dependabot by bumping a bunch of things at once that are minor or patch level bumps. Reviewed By: muraziz Differential Revision: D28094201 fbshipit-source-id: b6b53ae2d582686201124b82fed4f436a60b3172
42 lines
1016 B
JSON
42 lines
1016 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": "^4.21.0",
|
|
"fs-extra": "^9.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "26.0.23",
|
|
"@typescript-eslint/parser": "^4.19.0",
|
|
"flipper-test-utils": "0.0.0",
|
|
"jest": "^26.6.3",
|
|
"prettier": "^2.2.1",
|
|
"rimraf": "^3.0.2",
|
|
"ts-jest": "^26.5.5",
|
|
"ts-node": "^9.1.1",
|
|
"typescript": "^4.2.4"
|
|
},
|
|
"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"
|
|
}
|