Files
flipper/desktop/doctor/package.json
Anton Nikolaev eb9a2cb5e7 Bump versions for all npm packages on release
Summary:
Automatically bump versions for all local npm packages included as workspaces and fix local dependencies correspondingly.

As a part of this I have also aligned versioning for all the packages by using the same version for all of them.

Reviewed By: jknoxville

Differential Revision: D20745632

fbshipit-source-id: 2d438c4b23ee72f7d7c068c5ce161063c7ceb9e5
2020-03-31 06:34:39 -07:00

50 lines
1.4 KiB
JSON

{
"name": "flipper-doctor",
"version": "0.35.0",
"description": "Utility for checking for issues with a flipper installation",
"main": "lib/index.js",
"flipper:source": "src",
"types": "lib/index.d.ts",
"license": "MIT",
"devDependencies": {
"@types/fb-watchman": "2.0.0",
"@types/jest": "^24.0.21",
"@typescript-eslint/eslint-plugin": "^2.8.0",
"eslint": "^6.6.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-flowtype": "^4.5.2",
"eslint-plugin-header": "^3.0.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"jest": "^24.9.0",
"prettier": "^2.0.0",
"ts-jest": "^25.3.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.7.2"
},
"scripts": {
"build": "tsc -b",
"prepare": "yarn run build",
"prepublishOnly": "yarn test && yarn run lint",
"preversion": "yarn run lint",
"test": "jest --config jestconfig.json --passWithNoTests",
"lint": "eslint -c ../.eslintrc.js src/**/* --ext .js,.ts && tsc --noemit",
"fix": "eslint -c ../.eslintrc.js src/**/* --fix --ext .js,.ts",
"run": "yarn run build && node lib/cli.js"
},
"files": [
"lib/**/*"
],
"keywords": [
"Flipper",
"Doctor"
],
"author": "Facebook, Inc",
"dependencies": {
"@types/node": "^13.7.7",
"envinfo": "^7.4.0",
"fb-watchman": "^2.0.1"
}
}