Files
flipper/desktop/eslint-plugin-flipper/package.json
Michel Weststrate bf7599e574 Bumped some deps to fix parsing of template literal types
Summary:
I want to use TypesScipt type literals in a next diff (e.g.

```
type Percentage = `${number}%`
```

But to be able to use that typescript, prettier and eslint needed bumps :)

Reviewed By: nikoant

Differential Revision: D26321133

fbshipit-source-id: a4891246ef8c654f324c6daf303c5c4b2f54496e
2021-02-10 02:52:22 -08:00

42 lines
1002 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.7.0",
"fs-extra": "^9.0.1"
},
"devDependencies": {
"@types/jest": "26",
"@typescript-eslint/parser": "^4.14.2",
"flipper-test-utils": "0.0.0",
"jest": "^26",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.0.0",
"ts-node": "^8",
"typescript": "^4.1.2"
},
"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"
}