UNPKG

friendlog

Version:

[Install Node](https://nodejs.org/en/download/package-manager/) (if you haven't before)

47 lines (46 loc) 898 B
{ "name": "friendlog", "version": "0.6.0", "main": "index.js", "scripts": { "test": "npm run lint", "lint": "eslint index.js", "lint-fix": "eslint index.js --fix" }, "author": "Kunal Marwaha, Pandu Rendradjaja", "license": "ISC", "dependencies": { "columnify": "^1.5.4", "lodash": "^4.17.5", "minimist": "^1.2.0", "moment": "^2.21.0", "readline": "^1.3.0" }, "files": [ "index.js", "completion.sh" ], "description": "", "repository": "github:marwahaha/friendlog", "keywords": [ "friend", "log", "hangout", "cli" ], "bin": { "friendlog": "./index.js", "fl": "./index.js", "fl-completion-setup": "./completion.sh" }, "husky": { "hooks": { "pre-commit": "npm test", "pre-push": "npm test" } }, "devDependencies": { "eslint": "^4.19.1", "husky": "^1.0.0-rc.1" } }