UNPKG

@storyblok/create-demo

Version:

A CLI tool for quickly starting a Storyblok project

106 lines (105 loc) 2.62 kB
{ "name": "@storyblok/create-demo", "description": "A CLI tool for quickly starting a Storyblok project", "version": "1.2.2", "author": "Alexander Feiglstorfer", "main": "dist/index.js", "types": "dist/index.d.ts", "contributors": [ { "name": "Lisi Linhart", "url": "https://github.com/lisilinhart" }, { "name": "Roberto Butti", "url": "https://github.com/roberto-butti" } ], "bin": { "create-demo": "bin/run" }, "files": [ "/bin", "/src", "/dist", "/templates", "/npm-shrinkwrap.json", "/oclif.manifest.json" ], "bugs": { "url": "https://github.com/storyblok/storyblok-create-demo/issues" }, "scripts": { "lint": "eslint ./src --ext .ts --config .eslintrc", "build": "shx rm -rf dist && tsc -b", "postpack": "shx rm -f oclif.manifest.json", "posttest": "yarn lint", "prepack": "yarn build && oclif manifest && oclif readme", "test": "mocha --forbid-only \"test/**/*.test.ts\"", "version": "oclif readme && git add README.md", "prepare": "is-ci || husky install" }, "dependencies": { "@oclif/core": "^2.8.4", "@oclif/plugin-help": "^5.2.9", "@oclif/plugin-plugins": "^3.0.1 ", "chalk": "^4.1.2", "inquirer": "^8.2.4", "node-fetch": "^2.6.7" }, "devDependencies": { "@commitlint/cli": "^17.6.1", "@commitlint/config-conventional": "^17.6.1", "@oclif/test": "^2.3.17", "@types/chai": "^4", "@types/inquirer": "^9.0.3", "@types/mocha": "^9.0.0", "@types/node": "^16.18.25", "@types/node-fetch": "^2.6.4", "chai": "^4", "copyfiles": "^2.4.1", "eslint": "^7.32.0", "eslint-config-oclif": "^4", "eslint-config-oclif-typescript": "^1.0.3", "husky": "^8.0.3", "is-ci": "^3.0.1", "mocha": "^9", "oclif": "^3", "rimraf": "^5.0.0", "shx": "^0.3.4", "ts-node": "^10.9.1", "tslib": "^2.5.0", "typescript": "^4.9.5" }, "oclif": { "bin": "@storyblok/create-demo", "dirname": "@storyblok/create-demo", "default": "default", "commands": "./dist/commands", "plugins": [ "@oclif/plugin-help", "@oclif/plugin-plugins" ] }, "homepage": "https://github.com/storyblok/storyblok-create-demo", "keywords": [ "CLI", "Storyblok", "project starter", "command line tool" ], "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/storyblok/storyblok-create-demo.git" }, "release": { "branches": [ "main", { "name": "next", "prerelease": true } ] } }