{
  "name": "d3-time-format",
  "version": "4.1.0",
  "description": "A JavaScript time formatter and parser inspired by strftime and strptime.",
  "homepage": "https://d3js.org/d3-time-format/",
  "repository": {
    "type": "git",
    "url": "https://github.com/d3/d3-time-format.git"
  },
  "license": "ISC",
  "author": {
    "name": "Mike Bostock",
    "url": "http://bost.ocks.org/mike"
  },
  "type": "module",
  "files": [
    "dist/**/*.js",
    "src/**/*.js",
    "locale/*.json"
  ],
  "module": "src/index.js",
  "main": "src/index.js",
  "jsdelivr": "dist/d3-time-format.min.js",
  "unpkg": "dist/d3-time-format.min.js",
  "exports": {
    ".": {
      "umd": "./dist/d3-time-format.min.js",
      "default": "./src/index.js"
    },
    "./locale/*": "./locale/*.json"
  },
  "sideEffects": [
    "./src/defaultLocale.js"
  ],
  "dependencies": {
    "d3-time": "1 - 3"
  },
  "devDependencies": {
    "eslint": "8",
    "mocha": "9",
    "rollup": "2",
    "rollup-plugin-terser": "7"
  },
  "engines": {
    "node": ">=12"
  }
}