Summary: Bumps [globby](https://github.com/sindresorhus/globby) from 11.0.4 to 12.0.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/sindresorhus/globby/releases">globby's releases</a>.</em></p> <blockquote> <h2>v12.0.0</h2> <h3>Breaking</h3> <ul> <li>Require Node.js 12.20 (<a href="https://github-redirect.dependabot.com/sindresorhus/globby/issues/181">https://github.com/facebook/flipper/issues/181</a>) 5c32b4a</li> <li>This package is now pure ESM. Please <a href="https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c">read this</a>.</li> <li>This package now uses named exports instead of a default export <ul> <li><code>globby</code> → <code>{globby}</code></li> <li><code>globby.sync</code> → <code>{globbySync}</code></li> <li><code>globby.stream</code> → <code>{globbyStream}</code></li> <li><code>globby.generateGlobTasks</code> → <code>{generateGlobTasks}</code></li> <li><code>globby.hasMagic</code> → <code>{isDynamicPattern}</code></li> <li><code>globby.gitignore</code> → <code>{isGitIgnored}</code></li> <li><code>globby.gitignore.sync</code> → <code>{isGitIgnoredSync}</code></li> </ul> </li> </ul> <pre lang="diff"><code>-const globby = require('globby'); +import {globby} from 'globby'; </code></pre> <p><a href="https://github.com/sindresorhus/globby/compare/v11.0.4...v12.0.0">https://github.com/sindresorhus/globby/compare/v11.0.4...v12.0.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="24453e6bff"><code>24453e6</code></a> 12.0.0</li> <li><a href="662cafc794"><code>662cafc</code></a> Minor tweaks</li> <li><a href="5c32b4ab94"><code>5c32b4a</code></a> Require Node.js 12.20 and move to ESM (<a href="https://github-redirect.dependabot.com/sindresorhus/globby/issues/181">https://github.com/facebook/flipper/issues/181</a>)</li> <li>See full diff in <a href="https://github.com/sindresorhus/globby/compare/v11.0.4...v12.0.0">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `dependabot rebase` will rebase this PR - `dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `dependabot merge` will merge this PR after your CI passes on it - `dependabot squash and merge` will squash and merge this PR after your CI passes on it - `dependabot cancel merge` will cancel a previously requested merge and block automerging - `dependabot reopen` will reopen this PR if it is closed - `dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Pull Request resolved: https://github.com/facebook/flipper/pull/2631 Reviewed By: timur-valiev Differential Revision: D30012641 Pulled By: passy fbshipit-source-id: e37e70084e8169d567361e22acce44848ef7d2c6
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.0.0",
|
|
"@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.0",
|
|
"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"
|
|
]
|
|
}
|
|
}
|