{
  "name": "mongoose-history-plugin",
  "version": "3.0.1",
  "description": "Mongoose plugin that saves history in JsonPatch format and SemVer format",
  "main": "index.js",
  "scripts": {
    "dev:test": "ava --watch --verbose",
    "test": "nyc ava",
    "coverage": "nyc report --reporter=text-lcov | coveralls",
    "remark": "remark . -o"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Masquerade-Circus/mongoose-history-plugin.git"
  },
  "keywords": [
    "mongoose",
    "history",
    "version",
    "semver",
    "plugin",
    "json",
    "patch",
    "diff",
    "document",
    "semantic",
    "versioning",
    "mongo"
  ],
  "author": {
    "name": "Masquerade Circus",
    "email": "christian@masquerade-circus.net",
    "url": "http://masquerade-circus.net"
  },
  "license": "Apache-2.0",
  "bugs": {
    "url": "https://github.com/Masquerade-Circus/mongoose-history-plugin/issues"
  },
  "homepage": "https://github.com/Masquerade-Circus/mongoose-history-plugin#readme",
  "engines": {
    "node": ">=10.18.0"
  },
  "files": [
    "index.js",
    "README.md",
    "LICENSE"
  ],
  "dependencies": {
    "jsondiffpatch": "^0.4.1",
    "semver": "^7.1.3"
  },
  "devDependencies": {
    "ava": "^3.8.2",
    "coveralls": "^3.1.0",
    "esm": "^3.2.25",
    "expect": "^26.0.1",
    "mongoose": "^5.9.1",
    "nyc": "^15.0.1",
    "remark-cli": "^8.0.0",
    "remark-toc": "^7.0.0"
  },
  "ava": {
    "files": [
      "tests/**/*_test.js"
    ],
    "failWithoutAssertions": false,
    "require": [
      "esm"
    ]
  },
  "nyc": {
    "exclude": [
      "tests"
    ]
  },
  "remarkConfig": {
    "plugins": [
      "toc"
    ]
  },
  "resolutions": {
    "minimist": "^1.2.3",
    "yargs-parser": "^18.1.2"
  }
}
