jack-cli
Version:
Chop through that Git log wicked fast!
71 lines (70 loc) • 1.41 kB
JSON
{
"name": "jack-cli",
"version": "1.3.0",
"description": "Chop through that Git log wicked fast!",
"main": "index.js",
"preferGlobal": true,
"repository": {
"type": "git",
"url": "https://github.com/drewbrokke/jack-cli"
},
"bin": {
"jack": "index.js"
},
"engines": {
"node": ">=4"
},
"scripts": {
"build": "tsc --project .",
"clean": "rm -rf node_modules dist",
"dev": "npm run watch",
"format": "prettier --write './src/**/*.ts'",
"lint": "tslint --project . --fix",
"prebuild": "npm run clean && npm install",
"pretest": "tsc --project .",
"test": "tslint --project . && ava",
"watch": "tsc --project . --watch"
},
"prepublishOnly": "npm run build",
"author": "Drew Brokke <drew.brokke@liferay.com> (https://github.com/drewbrokke)",
"license": "ISC",
"dependencies": {
"blessed": "^0.1.81",
"flexsearch": "^0.6.30",
"kleur": "^3.0.3",
"open": "^6.4.0"
},
"keywords": [
"cli",
"command",
"commit",
"diff",
"git",
"jack",
"line",
"log",
"look",
"lumber",
"lumberjack",
"quick",
"quicklook",
"show"
],
"devDependencies": {
"@ava/typescript": "^1.1.1",
"@types/blessed": "^0.1.12",
"@types/node": "^9.6.1",
"ava": "^3.8.1",
"prettier": "^1.18.2",
"tslint": "^5.20.0",
"tslint-config-prettier": "^1.14.0",
"typescript": "^3.6.3"
},
"ava": {
"typescript": {
"rewritePaths": {
"src/": "dist/"
}
}
}
}