{
  "name": "@cull/pore",
  "version": "0.2.1",
  "description": "An email data analysis library.",
  "main": "build/main/index.js",
  "typings": "build/main/index.d.ts",
  "module": "build/module/index.js",
  "scripts": {
    "build": "make build",
    "watch": "make watch",
    "test": "make test",
    "lint": "make lint",
    "coverage": "make coverage"
  },
  "keywords": [
    "javascript",
    "typescript",
    "email",
    "data-analysis",
    "origin",
    "chronology",
    "histogram",
    "sankey",
    "cull"
  ],
  "author": "Jon Adams <jon@kuokoa.studio>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/cull-email/pore/issues"
  },
  "homepage": "https://github.com/cull-email/pore#readme",
  "devDependencies": {
    "@istanbuljs/nyc-config-typescript": "^1.0.1",
    "@types/node": "^13.13.9",
    "ava": "^3.8.2",
    "nyc": "^15.0.1",
    "prettier": "^1.19.1",
    "ts-node": "^8.10.1",
    "tslint": "^6.1.2",
    "tslint-config-prettier": "^1.18.0",
    "typescript": "^3.9.3"
  },
  "dependencies": {
    "@cull/imap": "^0.2.5",
    "moment": "^2.26.0",
    "psl": "^1.8.0"
  },
  "prettier": {
    "singleQuote": true
  },
  "ava": {
    "extensions": [
      "ts"
    ],
    "require": [
      "ts-node/register"
    ],
    "failFast": true,
    "files": [
      "src/**/*.test.ts"
    ],
    "ignoredByWatcher": [
      "build/**/*"
    ]
  },
  "nyc": {
    "extends": "@istanbuljs/nyc-config-typescript",
    "exclude": [
      "build/*",
      "test/*"
    ]
  }
}
