UNPKG

@domisoft/todo-clean-architecture-cli

Version:
67 lines (66 loc) 1.9 kB
{ "name": "@domisoft/todo-clean-architecture-cli", "version": "1.0.0", "description": "Clean Architecture Concepts Applied", "main": "lib/index.js", "bin": { "todo": "./lib/index.js" }, "types": "lib/index.d.ts", "files": [ "lib/**/*" ], "scripts": { "create": "npm run build && npm run proof", "proof": "npm i -g && todo", "test": "jest --config jestconfig.json", "build": "tsc", "format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"", "lint": "tslint -p tsconfig.json", "prepare": "npm run build", "prepublishOnly": "npm test && npm run lint", "preversion": "npm run lint", "version": "npm run format && git add -A src", "postversion": "git push && git push --tags", "start": "npm run build && nodemon --watch 'src/**/*.ts' --exec ts-node src/index.ts" }, "repository": { "type": "git", "url": "https://github.com/pnowak2/todo-clean-architecture-cli.git" }, "author": "Piotr Nowak", "license": "ISC", "keywords": [ "Clean", "Architecture" ], "dependencies": { "@domisoft/todo-clean-architecture": "^1.0.0", "chalk": "^3.0.0", "clear": "^0.1.0", "commander": "^4.0.1", "figlet": "^1.2.4", "path": "^0.12.7", "rxjs": "^6.5.3" }, "devDependencies": { "@types/clear": "^0.1.0", "@types/commander": "^2.12.2", "@types/figlet": "^1.2.0", "@types/jest": "^24.0.23", "@types/node": "^12.12.16", "html-webpack-plugin": "^3.2.0", "jest": "^24.9.0", "live-server": "^1.2.1", "nodemon": "^2.0.2", "prettier": "^1.19.1", "ts-jest": "^24.2.0", "ts-loader": "^6.2.1", "ts-node": "^8.5.4", "tslint": "^5.20.1", "tslint-config-prettier": "^1.18.0", "typescript": "^3.7.3", "webpack": "^4.41.2", "webpack-cli": "^3.3.10" } }