UNPKG

kdreact-migrate

Version:

CLI tool to migrate React applications from version 16 to newer versions (17, 18, 19)

70 lines (69 loc) 1.97 kB
{ "name": "kdreact-migrate", "version": "1.0.6", "description": "CLI tool to migrate React applications from version 16 to newer versions (17, 18, 19)", "main": "dist/index.js", "types": "dist/index.d.ts", "bin": { "react-migrate": "./bin/react-migrate" }, "scripts": { "build": "tsc", "dev": "tsc --watch", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "test:ci": "jest --coverage --ci --watchAll=false", "lint": "eslint . --ext .ts,.js", "lint:fix": "eslint . --ext .ts,.js --fix", "type-check": "tsc --noEmit", "format": "prettier --write \"**/*.{ts,js,json,md}\"", "format:check": "prettier --check \"**/*.{ts,js,json,md}\" --write", "prepare": "npm run build && chmod +x bin/react-migrate", "prepublishOnly": "npm test", "docs": "typedoc --out docs src/index.ts", "docs:serve": "typedoc --out docs src/index.ts --serve", "clean": "rm -rf dist docs coverage" }, "keywords": [ "react", "migration", "upgrade", "cli", "react16", "react17", "react18", "react19", "dependency-update", "typescript" ], "author": "Kuldeep imkuldeepahlawat@gmail.com", "license": "MIT", "dependencies": { "chalk": "^4.1.2", "commander": "^9.4.1" }, "devDependencies": { "@types/jest": "^29.0.0", "@types/node": "^20.0.0", "@typescript-eslint/eslint-plugin": "^6.21.0", "@typescript-eslint/parser": "^6.21.0", "eslint": "^8.57.0", "jest": "^29.0.0", "prettier": "^3.0.0", "ts-jest": "^29.0.0", "typedoc": "^0.25.0", "typescript": "^5.3.3" }, "engines": { "node": ">=14.0.0" }, "repository": { "type": "git", "url": "https://github.com/imkuldeepahlawat/kdreact-migrate.git" }, "bugs": { "url": "https://github.com/imkuldeepahlawat/kdreact-migrate/issues" }, "homepage": "https://github.com/imkuldeepahlawat/kdreact-migrate#readme" }