UNPKG

sb-mig

Version:

CLI to rule the world. (and handle stuff related to Storyblok CMS)

115 lines (114 loc) 3.56 kB
{ "name": "sb-mig", "version": "5.5.3", "description": "CLI to rule the world. (and handle stuff related to Storyblok CMS)", "author": "Marcin Krawczyk <marckraw@icloud.com>", "license": "MIT", "bin": "./dist/cli/index.js", "main": "./dist/cli/index.js", "repository": { "type": "git", "url": "git+https://github.com/sb-mig/sb-mig.git" }, "publishConfig": { "registry": "https://registry.npmjs.org/", "access": "public" }, "bugs": "https://github.com/sb-mig/sb-mig/issues", "homepage": "https://github.com/sb-mig/sb-mig", "keywords": [ "cli", "storyblok", "sb", "migrate" ], "type": "module", "exports": { ".": "./dist/cli/index.js", "./dist/*": "./dist/*" }, "engines": { "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "files": [ "/dist", "README.md" ], "scripts": { "lint-staged": "node ./src/scripts/fix-esm.js && lint-staged", "build": "rm -rf dist && tsc -p tsconfig.json && chmod +x ./dist/cli/index.js", "build:dev": "chokidar 'src/**/*.{js,ts,cjs,mjs}' -c 'yarn build'", "build:dev:yalc": "chokidar 'src/**/*.{js,ts,cjs,mjs}' -c 'yarn build && yalc push'", "build:test": "tsc -p tsconfig.test.json", "build:test:dev": "chokidar '__tests__/**/*.ts' -c 'yarn build:test'", "lint:fix": "eslint --fix", "lint:all": "eslint .", "lint:fix:all": "eslint . --fix", "lint:ts": "cd src && tsc --declaration --emitDeclarationOnly && cd ..", "test": "mocha ./dist-tests/__tests__ --require esm", "start": "yarn build && ./dist/cli/index.js", "debug": "yarn build && ./dist/cli/index.js sync components accordion accordion-item", "semantic-release": "semantic-release", "prepare": "husky install", "build:yalc": "yarn build && yalc push" }, "dependencies": { "@swc/core": "1.3.41", "@swc/helpers": "0.4.14", "chalk": "^5.3.0", "dotenv": "^16.4.5", "form-data": "^4.0.0", "fs-extra": "^11.2.0", "glob": "8", "meow": "^11.0.0", "ncp": "^2.0.0", "node-fetch": "^3.3.2", "rollup": "^3.28.0", "rollup-plugin-ts": "^3.4.4", "semver": "^7.6.2", "storyblok-js-client": "^5.12.0", "storyblok-schema-types": "^1.2.4", "typescript": "^5.1.6", "uuid": "^9.0.0" }, "devDependencies": { "@commitlint/cli": "^17.7.1", "@commitlint/config-conventional": "^17.7.0", "@rollup/plugin-node-resolve": "^15.2.3", "@ryansonshine/commitizen": "^4.2.8", "@ryansonshine/cz-conventional-changelog": "^3.3.4", "@semantic-release/changelog": "^6.0.3", "@semantic-release/git": "^10.0.1", "@sindresorhus/tsconfig": "^3.0.1", "@storyblok/react": "^3.0.10", "@types/chai": "^4.3.10", "@types/fs-extra": "^11.0.4", "@types/glob": "^8.1.0", "@types/mocha": "^10.0.4", "@types/ncp": "^2.0.8", "@types/node": "18.16.18", "@types/sinon": "^10.0.16", "@types/uuid": "^9.0.7", "@typescript-eslint/eslint-plugin": "^6.4.1", "@typescript-eslint/parser": "^6.4.1", "chai": "^4.3.10", "chokidar-cli": "^3.0.0", "eslint": "^8.47.0", "eslint-config-prettier": "^9.0.0", "eslint-plugin-import": "^2.28.1", "esm": "^3.2.25", "husky": "^8.0.3", "lint-staged": "^13.2.3", "mocha": "^10.2.0", "prettier": "^3.0.3", "semantic-release": "^21.0.9", "semantic-release-slack-bot": "^4.0.1", "sinon": "^15.2.0", "tsc-files": "^1.1.4" }, "config": { "commitizen": { "path": "./node_modules/@ryansonshine/cz-conventional-changelog" } } }