UNPKG

@micro-app/cli

Version:

[CLI] Pluggable micro application framework.

71 lines (70 loc) 1.91 kB
{ "name": "@micro-app/cli", "version": "0.5.1", "description": "[CLI] Pluggable micro application framework.", "main": "src/index.js", "bin": { "micro-app": "bin/micro-app", "micro-app-dev": "bin/micro-app-dev", "micro-app-serve": "bin/micro-app-serve", "micro-app-start": "bin/micro-app-start", "micro-app-build": "./bin/micro-app-build" }, "scripts": { "prepublishOnly": "npm run test", "lint": "eslint .", "lint:fix": "npm run lint -- --fix", "test": "jest", "release": "bin/micro-app release", "release:alpha": "npm run release -- --preRelease=alpha", "release:next": "npm run release -- --preRelease=next", "release:minor": "npm run release -- minor", "release:patch": "npm run release -- patch" }, "homepage": "https://github.com/MicroAppJS/cli", "repository": { "type": "git", "url": "git+https://github.com/MicroAppJS/cli.git" }, "bugs": { "url": "https://github.com/MicroAppJS/cli/issues" }, "files": [ "bin", "src" ], "keywords": [ "micro", "microapp", "micro-app", "micro-application", "core", "cli" ], "author": { "name": "Zyao89", "email": "zyao89@gmail.com" }, "license": "MIT", "husky": { "hooks": { "pre-commit": "npm run test" } }, "devDependencies": { "@micro-app/plugin-deploy": "^0.0.9", "@types/jest": "^24.9.1", "eslint-config-2o3t": "^2.0.2", "husky": "^3.1.0", "jest": "^24.9.0" }, "dependencies": { "@micro-app/core": "^0.5.0", "@zkochan/cmd-shim": "^4.3.0", "read-cmd-shim": "^2.0.0", "update-notifier": "^4.1.3" }, "engines": { "node": ">=8" } }