Summary: Created a quick-and-dirty flipper-dump command, to verify that the stand alone flipper-server-core can do it's job without the Electron Flipper Reviewed By: passy Differential Revision: D31543516 fbshipit-source-id: ce8e37316ab5f09700421bcf1c7830266e02c999
35 lines
834 B
JSON
35 lines
834 B
JSON
{
|
|
"name": "flipper-dump",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"description": "Flipper tool to dump data from clients",
|
|
"repository": "facebook/flipper",
|
|
"main": "lib/index.js",
|
|
"flipperBundlerEntry": "src",
|
|
"types": "lib/index.d.ts",
|
|
"license": "MIT",
|
|
"bugs": "https://github.com/facebook/flipper/issues",
|
|
"dependencies": {
|
|
"flipper-common": "0.0.0",
|
|
"flipper-server-core": "0.0.0",
|
|
"ts-node": "^10.2.1",
|
|
"yargs": "^17.2.1"
|
|
},
|
|
"devDependencies": {},
|
|
"peerDependencies": {},
|
|
"scripts": {
|
|
"start": "ts-node src/index.tsx",
|
|
"reset": "rimraf lib *.tsbuildinfo",
|
|
"build": "tsc -b",
|
|
"prepack": "yarn reset && yarn build"
|
|
},
|
|
"files": [
|
|
"lib/**/*"
|
|
],
|
|
"homepage": "https://github.com/facebook/flipper",
|
|
"keywords": [
|
|
"Flipper"
|
|
],
|
|
"author": "Facebook, Inc"
|
|
}
|