{
  "name": "github-calendar-graph",
  "version": "0.2.8",
  "description": "Get GitHub contribution calendar graph",
  "homepage": "https://github.com/x3388638/github-calendar-graph",
  "keywords": [
    "github",
    "contribution",
    "calendar",
    "graph",
    "heatmap"
  ],
  "main": "index.js",
  "scripts": {
    "start": "node index.js",
    "test": "jest",
    "prettier:check": "prettier --check './**/*.{js,json}' && echo \"✅ Prettier validated\"",
    "prettier:write": "prettier --write './**/*.{js,json}'"
  },
  "jest": {
    "verbose": true,
    "testURL": "http://localhost/"
  },
  "author": "Y.Y. Chang",
  "license": "MIT",
  "repository": {
    "url": "git@github.com:x3388638/github-calendar-graph.git",
    "type": "git"
  },
  "dependencies": {
    "cheerio": "^1.0.0-rc.2",
    "request": "^2.87.0"
  },
  "devDependencies": {
    "husky": "^4.3.0",
    "jest": "^25.0.0",
    "lint-staged": "^10.5.0",
    "moment": "^2.22.2",
    "prettier": "^2.1.2"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "*.js": [
      "npm run prettier:check"
    ]
  }
}
