Files
flipper/desktop/pkg/package.json
generatedunixname89002005306973 2d27b90bd9 Flipper Release: v0.37.0
Summary: Releasing version 0.37.0

Reviewed By: jknoxville

Differential Revision: D20919249

fbshipit-source-id: 59ec28ba10043da03c460d9eaadb30a8fd2e4a6f
2020-04-09 03:07:19 -07:00

70 lines
1.7 KiB
JSON

{
"name": "flipper-pkg",
"version": "0.37.0",
"description": "Utility for building and publishing Flipper plugins",
"repository": "facebook/flipper",
"main": "lib/index.js",
"flipper:source": "src",
"types": "lib/index.d.ts",
"license": "MIT",
"bin": {
"flipper-pkg": "./bin/run"
},
"bugs": "https://github.com/facebook/flipper/issues",
"dependencies": {
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/plugin-help": "^2",
"@types/fs-extra": "^8.1.0",
"@types/inquirer": "^6.5.0",
"@types/node": "^13.7.5",
"cli-ux": "^5.4.5",
"fs-extra": "^8.1.0",
"flipper-babel-transformer": "0.37.0",
"inquirer": "^7.0.5",
"metro": "^0.58.0",
"tslib": "^1"
},
"devDependencies": {
"@oclif/dev-cli": "^1",
"@types/jest": "^25.1.0",
"globby": "^10",
"jest": "^25.1.0",
"prettier": "^2.0.0",
"rimraf": "^3.0.2",
"ts-jest": "^25.2.1",
"ts-node": "^8",
"typescript": "^3.7.2"
},
"scripts": {
"reset": "rimraf lib *.tsbuildinfo",
"prebuild": "cd ../babel-transformer && yarn build",
"build": "tsc -b",
"postpack": "rimraf oclif.manifest.json",
"prepack": "yarn reset && yarn build && oclif-dev manifest && oclif-dev readme",
"run": "yarn build && bin/run",
"version": "oclif-dev readme && hg add README.md"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"lib/**/*"
],
"homepage": "https://github.com/facebook/flipper",
"keywords": [
"Flipper"
],
"author": "Facebook, Inc",
"oclif": {
"commands": "./lib/commands",
"bin": "flipper-pkg",
"plugins": [
"@oclif/plugin-help"
]
}
}