{
  "name": "calc-week-number",
  "version": "2.0.0",
  "description": "Derive the week number of a month, the week number of a year based on a given date.",
  "main": "./dist/cjs/index.js",
  "module": "./dist/esm/index.mjs",
  "types": "./dist/types/index.d.ts",
  "exports": {
    ".": {
      "require": "./dist/cjs/index.js",
      "import": "./dist/esm/index.mjs",
      "types": "./dist/types/index.d.ts"
    }
  },
  "scripts": {
    "test": "npm run lint && npm run jest",
    "lint": "eslint src/. --config .eslintrc.json --ext .ts --fix",
    "jest": "jest test/. --coverage && coveralls < coverage/lcov.info",
    "compile": "shx rm -rf dist/ && tsc",
    "dev": "ts-node-dev src/dev.ts",
    "build:cjs": "tsc -p tsconfig.cjs.json",
    "build:esm": "tsc -p tsconfig.esm.json && npm run rename:esm",
    "build": "npm run build:cjs && npm run build:esm",
    "clean": "rimraf dist",
    "rename:esm": "/bin/zsh ./scripts/fix-mjs.sh",
    "prepack": "npm run clean && npm run build"
  },
  "keywords": [
    "calender",
    "weeknumber",
    "week",
    "number",
    "month",
    "year",
    "date"
  ],
  "author": "Thai Ba Long <thaibalong7@gmail.com>",
  "license": "MIT",
  "standard": {
    "env": [
      "jest"
    ],
    "ignore": []
  },
  "devDependencies": {
    "@types/jest": "^27.5.2",
    "@typescript-eslint/eslint-plugin": "^5.62.0",
    "@typescript-eslint/parser": "^5.62.0",
    "coveralls-next": "^4.2.1",
    "eslint": "^7.32.0",
    "jest": "^27.5.1",
    "rimraf": "^6.0.1",
    "shx": "^0.3.4",
    "ts-jest": "^27.1.5",
    "ts-node-dev": "^2.0.0",
    "tslint": "^5.20.1",
    "typescript": "^4.9.5"
  },
  "dependencies": {},
  "repository": {
    "type": "git",
    "url": "github.com/thaibalong7/week-number.git"
  },
  "bugs": {
    "url": "https://github.com/thaibalong7/calc-week-number/issues"
  },
  "homepage": "https://github.com/thaibalong7/calc-week-number"
}
