{
  "name": "dob-to-age",
  "description": "Determines current age based on a date of birth string YYYY-MM-DD using same weird logic we humans do.",
  "version": "4.0.0",
  "author": "Henrik Joreteg <henrik@joreteg.com>",
  "bugs": {
    "url": "https://github.com/henrikjoreteg/dob-to-age"
  },
  "devDependencies": {
    "eslint": "7.19.0",
    "eslint-plugin-jsdoc": "32.2.0",
    "esm": "3.2.25",
    "fixpack": "4.0.0",
    "milliseconds": "1.0.3",
    "prettier": "2.2.1",
    "prettier-plugin-jsdoc": "0.3.13",
    "rollup": "2.41.1",
    "tap-spec": "5.0.0",
    "tape": "5.1.1",
    "typescript": "^5.1.6"
  },
  "exports": {
    "import": "./src/dob-to-age.js",
    "require": "./dist/index.js"
  },
  "files": [
    "src",
    "dist"
  ],
  "homepage": "https://github.com/henrikjoreteg/dob-to-age",
  "keywords": [
    "age",
    "date of birth",
    "dates"
  ],
  "license": "MIT",
  "main": "./dist/index.js",
  "module": "./src/dob-to-age.js",
  "prettier": {
    "semi": false,
    "singleQuote": true,
    "jsxSingleQuote": true,
    "arrowParens": "avoid",
    "jsdocParser": true
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/henrikjoreteg/dob-to-age.git"
  },
  "scripts": {
    "build": "rollup src/dob-to-age --file dist/index.js --format cjs",
    "ci": "npm run static && npm test",
    "format": "prettier --write .",
    "lint": "eslint ./src .",
    "prepublishOnly": "npm run ci && npm run build",
    "static": "fixpack && npm run format && npm run lint && npm run tsc",
    "test": "tape -r esm src/**/*.spec.js | tap-spec",
    "tsc": "tsc -p ."
  }
}
