Summary: Pull Request resolved: https://github.com/facebook/flipper/pull/2736 This should fix a bunch of open dependabot issues on GitHub. Reviewed By: fabiomassimo Differential Revision: D30539761 fbshipit-source-id: b355d41336b3b1d85b50fb0736fc1b33b12e83d0
80 lines
2.0 KiB
JSON
80 lines
2.0 KiB
JSON
{
|
|
"name": "flipper-pkg",
|
|
"version": "0.0.0",
|
|
"description": "Utility for building and publishing Flipper plugins",
|
|
"repository": "facebook/flipper",
|
|
"main": "lib/index.js",
|
|
"flipperBundlerEntry": "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/parser": "^3.8.5",
|
|
"@oclif/plugin-help": "^3.2.3",
|
|
"@oclif/plugin-warn-if-update-available": "^1.7.0",
|
|
"ajv": "^6.12.2",
|
|
"ajv-errors": "^1.0.1",
|
|
"cli-ux": "^5.6.3",
|
|
"flipper-pkg-lib": "0.0.0",
|
|
"flipper-plugin-lib": "0.0.0",
|
|
"fs-extra": "^10.0.0",
|
|
"inquirer": "^8.1.2",
|
|
"lodash": "^4.17.21",
|
|
"recursive-readdir": "^2.2.2"
|
|
},
|
|
"devDependencies": {
|
|
"@oclif/dev-cli": "^1",
|
|
"@types/fs-extra": "^9.0.12",
|
|
"@types/inquirer": "^7.3.3",
|
|
"@types/jest": "^26.0.24",
|
|
"@types/node": "^15.12.5",
|
|
"flipper-test-utils": "0.0.0",
|
|
"globby": "^12.0.2",
|
|
"jest": "^26.6.3",
|
|
"prettier": "^2.3.2",
|
|
"rimraf": "^3.0.2",
|
|
"ts-jest": "^26.5.6",
|
|
"ts-node": "^9.1.1",
|
|
"typescript": "^4.3.5"
|
|
},
|
|
"scripts": {
|
|
"reset": "rimraf lib *.tsbuildinfo",
|
|
"build": "tsc -b",
|
|
"readme": "oclif-dev readme",
|
|
"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",
|
|
"test": "yarn jest"
|
|
},
|
|
"engines": {
|
|
"node": ">=8.0.0"
|
|
},
|
|
"files": [
|
|
"/bin",
|
|
"/npm-shrinkwrap.json",
|
|
"/oclif.manifest.json",
|
|
"/lib/**/*",
|
|
"/schemas/**/*",
|
|
"/templates/**/*"
|
|
],
|
|
"homepage": "https://github.com/facebook/flipper",
|
|
"keywords": [
|
|
"Flipper"
|
|
],
|
|
"author": "Facebook, Inc",
|
|
"oclif": {
|
|
"commands": "./lib/commands",
|
|
"bin": "flipper-pkg",
|
|
"plugins": [
|
|
"@oclif/plugin-help",
|
|
"@oclif/plugin-warn-if-update-available"
|
|
]
|
|
}
|
|
}
|