{
    "name": "pretty-html-log",
    "version": "1.1.1",
    "description": "pretty-html-log is a npm module that pretty prints a raw html string to the console. It indents and highlights your code.",
    "main": "index.js",
    "scripts": {
        "build": "tsc",
        "prebuild": "npm run copy:readme",
        "bump-version": "rjp package.json version $VERSION",
        "copy:readme": "copyfiles ./README.md ./dist",
        "test": "jest",
        "test:coverage": "jest --coverage",
        "report:coverage": "npm run test:coverage && codecov",
        "format:check": "prettier --list-different '{lib,showcase,bin}/**/*.ts'",
        "format:write": "prettier --write '{lib,showcase,bin}/**/*.ts'",
        "semantic-release": "semantic-release"
    },
    "repository": {
        "type": "git",
        "url": "https://github.com/kreuzerk/pretty-html-log.git"
    },
    "keywords": [
        "console",
        "log",
        "pretty",
        "print",
        "highlight",
        "HTML"
    ],
    "author": "Kevin Kreuzer",
    "license": "ISC",
    "bugs": {
        "url": "https://github.com/kreuzerk/pretty-html-log/issues"
    },
    "homepage": "https://github.com/kreuzerk/pretty-html-log#readme",
    "dependencies": {
        "chalk": "^2.4.2",
        "commander": "^3.0.2",
        "prettier": "^1.18.2"
    },
    "devDependencies": {
        "@semantic-release/changelog": "^3.0.1",
        "@semantic-release/exec": "^3.3.2",
        "@semantic-release/git": "^7.0.6",
        "@types/jest": "^24.0.18",
        "@types/node": "^12.7.11",
        "codecov": "^3.6.1",
        "copyfiles": "^2.1.1",
        "husky": "^3.0.8",
        "jest": "^24.9.0",
        "pretty-quick": "^1.11.1",
        "replace-json-property": "^1.4.1",
        "ts-jest": "^24.1.0",
        "ts-node": "^8.4.1",
        "typescript": "^3.6.3",
        "semantic-release": "^15.13.24"
    },
    "husky": {
        "hooks": {
            "pre-commit": "pretty-quick --staged"
        }
    },
    "bin": {
        "pretty-html-log": "./src/bin/prettty-html-log.bin.js"
    }
}
