Summary: allow-large-files Got a ton of open bumps in GitHub. Want to address a bunch of them in one swoop. Reviewed By: jknoxville, nikoant Differential Revision: D29933570 fbshipit-source-id: d5dc18fab22e8c5b300ab318e60dd1514aecfd52
42 lines
1017 B
JSON
42 lines
1017 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.28.5",
|
|
"fs-extra": "^10.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "26.0.24",
|
|
"@typescript-eslint/parser": "^4.28.5",
|
|
"flipper-test-utils": "0.0.0",
|
|
"jest": "^26.6.3",
|
|
"prettier": "^2.3.2",
|
|
"rimraf": "^3.0.2",
|
|
"ts-jest": "^26.5.6",
|
|
"ts-node": "^9.1.1",
|
|
"typescript": "^4.3.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"
|
|
}
|