UNPKG

@liftr/cli

Version:

The Liftr CLI provides scaffolding for the Liftr framework

54 lines (53 loc) 1.48 kB
{ "name": "@liftr/cli", "version": "3.0.0", "description": "The Liftr CLI provides scaffolding for the Liftr framework", "author": "Faris Tangastani", "repository": "https://github.com/farisT/liftr-cli", "license": "MIT", "main": "./lib/index.js", "bin": { "liftr": "./lib/index.js" }, "keywords": [ "cli", "typescript", "nodejs", "framework", "liftr", "API" ], "scripts": { "start": "npm run build && npm run global", "build": "rm -rf lib && tsc -p .", "link-upstream": "git remote add upstream https://github.com/liftr-framework/cli", "sync": "git fetch origin && git checkout master && git pull && git checkout <your-branch> && git merge master && git push", "clean": "rm -rf ./lib", "global": "npm i -g && liftr", "refresh": "rm -rf ./node_modules ./package-lock.json && npm install", "tscov": "tscov --min-coverage 85", "tscov:d": "tscov --details" }, "dependencies": { "chalk": "^2.4.2", "clear": "^0.1.0", "commander": "^2.20.0", "fast-glob": "^3.2.2", "figlet": "^1.2.1", "fs-extra": "^8.0.0", "glob": "^7.1.4", "inquirer": "^7.0.4", "ora": "^4.0.3", "shelljs": "^0.8.3" }, "devDependencies": { "@types/fs-extra": "^5.0.5", "@types/glob": "^7.1.1", "@types/inquirer": "^6.5.0", "@types/node": "^12.0.0", "@types/shelljs": "^0.8.5", "tscov": "^1.3.3", "tslint": "^5.16.0", "typescript": "^3.4.5" } }