UNPKG

acho

Version:

The Hackable Log

80 lines (79 loc) 1.61 kB
{ "name": "acho", "description": "The Hackable Log", "homepage": "https://acho.js.org", "version": "4.0.6", "main": "./lib/Acho.js", "author": { "email": "josefrancisco.verdu@gmail.com", "name": "Kiko Beats", "url": "https://github.com/Kikobeats" }, "repository": { "type": "git", "url": "git+https://github.com/achojs/acho.git" }, "bugs": { "url": "https://github.com/achojs/acho/issues" }, "keywords": [ "debug", "debugger", "hackable", "log", "logger", "logging", "simple", "tiny" ], "dependencies": { "chalk": "~4.0.0", "fmt-obj": "~2.0.0", "pretty-ms": "~6.0.1", "sliced": "~1.0.1" }, "devDependencies": { "coveralls": "latest", "docsify-cli": "latest", "git-dirty": "latest", "husky": "latest", "lint-staged": "latest", "mocha": "latest", "nyc": "latest", "prettier-standard": "latest", "should": "latest", "standard": "latest", "standard-markdown": "latest" }, "engines": { "node": ">= 6" }, "files": [ "index.js", "lib" ], "scripts": { "clean": "rm -rf node_modules", "coveralls": "nyc report --reporter=text-lcov | coveralls", "lint": "standard-markdown && standard", "pretest": "npm run lint", "pretty": "prettier-standard index.js examples/**/*.js --single-quote", "test": "nyc mocha" }, "license": "MIT", "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "*.js": [ "prettier-standard" ] }, "standard": { "env": [ "mocha" ] } }