{
  "name": "d3-boxplot",
  "version": "1.0.0",
  "description": "d3js plugin for box-and-whisker plot",
  "homepage": "https://github.com/akngs/d3-boxplot",
  "repository": {
    "type": "git",
    "url": "https://github.com/akngs/d3-boxplot.git"
  },
  "keywords": [
    "boxplot",
    "box-and-whisker",
    "d3",
    "d3-module",
    "visualization",
    "statistics",
    "svg",
    "tukey"
  ],
  "license": "ISC",
  "author": {
    "name": "Alan Kang",
    "url":"https://github.com/akngs"
  },
  "type": "module",
  "files": [
    "dist/**/*.js",
    "src/**/*.js"
  ],
  "module": "src/index.js",
  "main": "src/index.js",
  "jsdelivr": "dist/d3-boxplot.min.js",
  "unpkg": "dist/d3-boxplot.min.js",
  "exports": {
    "umd": "./dist/d3-boxplot.min.js",
    "default": "./src/index.js"
  },
  "sideEffects": false,
  "dependencies": {
    "d3-array": "^2.4.0",
    "d3-scale": "^3.2.1"
  },
  "devDependencies": {
    "@rollup/plugin-node-resolve": "13",
    "eslint": "7",
    "jsdom": "17",
    "mocha": "9",
    "rollup": "2",
    "rollup-plugin-terser": "7",
    "d3": "7"
  },
  "scripts": {
    "test": "mocha 'test/**/*-test.js' && eslint src test",
    "prepublishOnly": "rm -rf dist && npm test && rollup -c",
    "postpublish": "git push && git push --tags"
  }
}
