@whodunit/investigator
Version:
yeoman inspired (actually stolen) investigator system to troubleshoot your production environment
118 lines (117 loc) • 2.68 kB
JSON
{
"name": "@whodunit/investigator",
"version": "1.0.4",
"description": "yeoman inspired (actually stolen) investigator system to troubleshoot your production environment",
"homepage": "http://whodunit.io",
"author": "whodunit",
"files": [
"lib"
],
"main": "lib",
"keywords": [
"tool",
"cli",
"troubleshoot",
"investigator",
"whodunit",
"app"
],
"devDependencies": {
"coveralls": "^3.0.2",
"eslint": "^5.10.0",
"eslint-config-prettier": "^3.3.0",
"eslint-config-xo": "^0.25.1",
"eslint-plugin-prettier": "^3.0.0",
"husky": "^1.2.1",
"inquirer": "^6.0.0",
"jsdoc": "^3.5.5",
"lint-staged": "^8.1.0",
"mocha": "^5.1.1",
"mockery": "^2.1.0",
"nock": "^10.0.4",
"nyc": "^13.1.0",
"prettier": "^1.15.3",
"proxyquire": "^2.0.1",
"sinon": "^7.2.2",
"tui-jsdoc-template": "^1.2.2"
},
"license": "BSD-2-Clause",
"repository": "whodunit/packages/whodunit-investigator",
"engines": {
"node": ">=6"
},
"scripts": {
"pretest": "eslint .",
"test": "nyc mocha",
"doc": "jsdoc -c jsdoc.json",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"precommit": "lint-staged",
"@whodunit/assert": "^1.0.0",
"@whodunit/test": "^1.0.0"
},
"dependencies": {
"@whodunit/environment": "^1.0.4",
"async": "^2.6.0",
"chalk": "^2.3.0",
"cli-spinner": "^0.2.10",
"cli-table": "^0.3.1",
"cross-spawn": "^6.0.5",
"dargs": "^6.0.0",
"dateformat": "^3.0.3",
"debug": "^4.1.0",
"detect-conflict": "^1.0.0",
"error": "^7.0.2",
"find-up": "^3.0.0",
"github-username": "^4.0.0",
"istextorbinary": "^2.2.1",
"lodash": "^4.17.10",
"make-dir": "^1.1.0",
"marked": "^0.7.0",
"marked-terminal": "^3.2.0",
"mem-fs-editor": "^5.0.0",
"minimist": "^1.2.0",
"pretty-bytes": "^5.1.0",
"read-chunk": "^3.0.0",
"read-pkg-up": "^4.0.0",
"rimraf": "^2.6.2",
"run-async": "^2.0.0",
"shelljs": "^0.8.0",
"term-size": "^1.2.0",
"text-table": "^0.2.0",
"through2": "^3.0.0",
"wrap-ansi": "^5.1.0"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.json": [
"prettier --write",
"git add"
]
},
"eslintConfig": {
"extends": [
"xo",
"prettier"
],
"env": {
"mocha": true,
"node": true
},
"rules": {
"prettier/prettier": [
"error",
{
"singleQuote": true,
"printWidth": 90
}
]
},
"plugins": [
"prettier"
]
},
"gitHead": "6c2f2442620102efbb0bec771f4c09bc07065e58"
}