{
  "name": "juno-js",
  "version": "0.1.2",
  "description": "👩‍🚀 Pretty logger for Node.",
  "main": "./lib/index.js",
  "types": "./lib/index.d.ts",
  "repository": "https://github.com/103cuong/juno",
  "author": "Kim Cuong <103cuong@gmail.com>",
  "keywords": [
    "logger",
    "winston",
    "4pet"
  ],
  "files": [
    "lib/**/*"
  ],
  "scripts": {
    "start": "node ./lib/index.js",
    "start:dev": "nodemon --ignore lib/ --exec ts-node ./src/index.ts",
    "test": "jest --config jestconfig.json",
    "build": "rm -rf lib && tsc -p tsconfig.build.json",
    "lint": "eslint src/**/*.ts",
    "lint:fix": "eslint --fix src/**/*.ts",
    "prepare": "yarn build",
    "prepublishOnly": "yarn lint & yarn test"
  },
  "lint-staged": {
    "*.ts": [
      "yarn lint",
      "yarn test"
    ]
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged",
      "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
    }
  },
  "devDependencies": {
    "@commitlint/cli": "^8.3.5",
    "@commitlint/config-conventional": "^8.3.4",
    "@types/jest": "^25.2.1",
    "@types/lodash": "^4.14.157",
    "@types/node": "^13.11.1",
    "@typescript-eslint/eslint-plugin": "^2.27.0",
    "@typescript-eslint/parser": "^2.27.0",
    "diana-js": "^0.7.0",
    "eslint": "^6.8.0",
    "husky": "^4.2.5",
    "jest": "^25.3.0",
    "lint-staged": "^10.1.3",
    "nodemon": "^2.0.3",
    "ts-jest": "^26.4.4",
    "ts-node": "^8.4.1",
    "typescript": "^4.1.3"
  },
  "dependencies": {
    "lodash": "^4.17.19",
    "winston": "^3.3.3"
  }
}
