docusaurus/packages/docusaurus-migrate/package.json
Joshua Chen 770418f8d2
refactor: unify log format with new logger utility (#5994)
Co-authored-by: sebastienlorber <lorber.sebastien@gmail.com>
2021-12-20 17:24:59 +01:00

50 lines
1.2 KiB
JSON

{
"name": "@docusaurus/migrate",
"version": "2.0.0-beta.13",
"description": "A CLI tool to migrate from older versions of Docusaurus.",
"main": "lib/index.js",
"license": "MIT",
"engines": {
"node": ">=14"
},
"scripts": {
"build": "tsc",
"watch": "tsc --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/facebook/docusaurus.git",
"directory": "packages/docusaurus-migrate"
},
"publishConfig": {
"access": "public"
},
"bin": {
"docusaurus-migrate": "bin/index.js"
},
"dependencies": {
"@babel/preset-env": "^7.16.4",
"@docusaurus/logger": "2.0.0-beta.13",
"@mapbox/hast-util-to-jsx": "^1.0.0",
"color": "^4.0.1",
"commander": "^5.1.0",
"fs-extra": "^10.0.0",
"glob": "^7.2.0",
"hast-util-to-string": "^1.0.4",
"hast-util-to-text": "^2.0.1",
"html-tags": "^3.1.0",
"import-fresh": "^3.2.2",
"jscodeshift": "^0.13.0",
"rehype-parse": "^7.0.1",
"remark-parse": "^8.0.2",
"remark-stringify": "^8.1.0",
"semver": "^7.3.4",
"tslib": "^2.3.1",
"unified": "^9.2.1",
"unist-util-visit": "^2.0.2"
},
"devDependencies": {
"@types/color": "^3.0.1",
"@types/jscodeshift": "^0.11.2"
}
}