morbo-cli
Version:
… All tech debt is vermin in the eyes of Morbo!
87 lines (86 loc) • 2.04 kB
JSON
{
"name": "morbo-cli",
"description": "… All tech debt is vermin in the eyes of Morbo!",
"version": "0.5.3",
"author": "Orry Baram",
"keywords": [
"morbo",
"tech-debt",
"technical debt",
"notes",
"hack",
"todo",
"morbo",
"annotate",
"optimize"
],
"repository": {
"type": "git",
"url": "git://github.com/orrybaram/morbo.git"
},
"main": "./src/index.js",
"scripts": {
"test": "yarn jest",
"lint": "eslint .",
"build": "yarn tsc && cp bin/cli dist/bin/cli && cp -r src/reporter dist/src/reporter",
"watch": "yarn tsc -w",
"prepare": "yarn build"
},
"bin": {
"morbo": "dist/bin/cli"
},
"engines": {
"node": ">= v0.10.26"
},
"licenses": [
{
"name": "MIT",
"url": "http://opensource.org/licenses/mit-license.php"
}
],
"dependencies": {
"@types/event-stream": "^3.3.34",
"@types/fs-extra": "^5.0.5",
"@types/isomorphic-fetch": "^0.0.35",
"@types/minimatch": "^3.0.3",
"@types/minimist": "^1.2.0",
"@types/node-fetch": "^2.1.6",
"@types/open": "^0.0.29",
"@types/ora": "^3.1.0",
"axios": "^0.18.0",
"babel-eslint": "^10.0.1",
"byline": "5.0.0",
"chalk": "2.4.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-prettier": "^3.0.0",
"event-stream": "3.3.4",
"fs-extra": "^7.0.0",
"git-blame": "^1.4.0",
"graphql-request": "^1.8.2",
"isbinaryfile": "3.0.2",
"jest": "^24.0.0",
"minimatch": "3.0.4",
"minimist": "1.2.0",
"open": "^0.0.5",
"ora": "^3.0.0",
"prettier": "^1.14.3",
"readdirp": "2.1.0"
},
"devDependencies": {
"@types/jest": "^24.0.9",
"@types/node": "^11.9.5",
"eslint": "^5.3.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-plugin-import": "^2.14.0",
"husky": "^1.1.2",
"ts-jest": "^24.0.0",
"typescript": "^3.3.3333"
},
"types": "dist/index.d.ts",
"husky": {
"hooks": {
"pre-commit": "yarn lint",
"pre-push": "yarn test"
}
}
}