{
  "name": "micro-table",
  "type": "module",
  "version": "0.8.2",
  "description": "A micro dataframe implemented in JavaScript. Not inspired by, but by accident similar to Arquero.",
  "source": "src/index.js",
  "module": "dist/module.js",
  "jsdelivr": "dist/module.js",
  "files": [
    "dist/module.js"
  ],
  "scripts": {
    "test": "jest --coverage",
    "make-badges": "istanbul-badges-readme",
    "watch": "parcel watch",
    "build": "parcel build",
    "lint": "eslint src/*.js",
    "clean": "rm -rf dist/*",
    "prepublish": "npm run build",
    "prebuild": "npm run test && npm run clean",
    "pretest": "npm run lint",
    "posttest": "npm run make-badges",
    "publish_patch": "npm install && npm version patch && npm publish && git push",
    "publish_minor": "npm install && npm version minor && npm publish && git push",
    "publish_major": "npm install && npm version major && npm publish && git push"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/stuwilmur/micro-table.git"
  },
  "keywords": [
    "database",
    "dataframe",
    "datatable",
    "model",
    "query",
    "statistics",
    "table",
    "transformation",
    "spreadsheet"
  ],
  "author": "Stu Murray",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/stuwilmur/micro-table/issues"
  },
  "homepage": "https://github.com/stuwilmur/micro-table#readme",
  "devDependencies": {
    "@babel/eslint-parser": "^7.19.1",
    "@babel/plugin-transform-modules-commonjs": "^7.19.6",
    "istanbul-badges-readme": "^1.8.2",
    "jest": "^29.3.0",
    "parcel": "^2.8.0"
  },
  "dependencies": {
    "d3": "^7.6.1"
  },
  "overrides": {
    "got": "^12.1.0"
  },
  "jest": {
    "moduleNameMapper": {
      "^d3$": "<rootDir>/node_modules/d3/dist/d3.min.js"
    },
    "coverageReporters": [
      "json-summary"
    ]
  }
}
