{
  "name": "@js-bits/log-in-color",
  "version": "1.0.2",
  "description": "Colorful console logging",
  "keywords": [
    "javascript",
    "typescript",
    "log",
    "logging",
    "console",
    "color",
    "colorful",
    "colored",
    "message"
  ],
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "require": "./dist/index.cjs",
      "default": "./index.js"
    }
  },
  "engines": {
    "node": ">=12"
  },
  "scripts": {
    "build": "rimraf ./dist && yarn build:dts && rollup ./index.js --format cjs --file dist/index.cjs",
    "build:dts": "tsc ./index.js --allowJs --emitDeclarationOnly --declaration --outDir dist",
    "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --verbose",
    "test-cjs": "jest --verbose",
    "test-coverage": "yarn test --coverage",
    "test-watch": "yarn test --watch",
    "lint": "tsc --noEmit && eslint '**/*.{js,jsx}'",
    "prepare": "husky install"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/js-bits/log-in-color"
  },
  "author": "https://github.com/apolo-gh",
  "license": "ISC",
  "devDependencies": {
    "@js-bits/formalinter": "^1.0.3",
    "@types/jest": "^29.5.2",
    "husky": "^8.0.3",
    "jest": "^29.5.0",
    "jest-environment-jsdom": "^29.5.0",
    "rimraf": "^5.0.1",
    "rollup": "^3.23.1",
    "typescript": "^4.8.4"
  },
  "jest": {
    "projects": [
      {
        "displayName": "node",
        "testEnvironment": "node"
      },
      {
        "displayName": "jsdom",
        "testEnvironment": "jsdom"
      }
    ]
  },
  "prettier": "@js-bits/formalinter/.prettierrc.json",
  "eslintConfig": {
    "extends": "@js-bits/eslint-config/.eslintrc.json"
  }
}
