Summary: Fixed npm packaging/publishing scripts for "flipper-doctor", "flipper-pkg" and "flipper-babel-transformer". Also removed scripts for testing and linting, because these packages are tested and linted by root level package.json. Reviewed By: jknoxville Differential Revision: D20839959 fbshipit-source-id: 4d9d037d4921fc97356c849054c389dfece05652
46 lines
1.1 KiB
JSON
46 lines
1.1 KiB
JSON
{
|
|
"name": "flipper-doctor",
|
|
"version": "0.36.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": {
|
|
"reset": "rimraf lib *.tsbuildinfo",
|
|
"build": "tsc -b",
|
|
"prepack": "yarn reset && yarn build",
|
|
"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"
|
|
}
|
|
}
|