{
  "name": "@conpago/mongo-seeding",
  "description": "The ultimate Node.js library for populating your MongoDB database.",
  "homepage": "https://mongo-seeding.kosiec.dev",
  "version": "4.1.0",
  "license": "MIT",
  "author": {
    "name": "Paweł Kosiec",
    "email": "pawel@kosiec.dev",
    "url": "https://kosiec.dev"
  },
  "maintainers": [
    {
      "name": "Paweł Kosiec",
      "email": "pawel@kosiec.dev",
      "url": "https://kosiec.dev"
    }
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/pkosiec/mongo-seeding.git"
  },
  "bugs": {
    "url": "https://github.com/pkosiec/mongo-seeding/issues"
  },
  "keywords": [
    "mongo",
    "mongodb",
    "seed",
    "db-seed",
    "database",
    "seeding",
    "db",
    "ejson"
  ],
  "tags": [
    "mongo",
    "mongodb",
    "seed",
    "db-seed",
    "database",
    "seeding",
    "db",
    "ejson"
  ],
  "main": "dist/index.js",
  "files": [
    "dist/"
  ],
  "scripts": {
    "test": "jest -i --ci",
    "test:unit": "jest unit",
    "test:integration": "jest integration",
    "test:coverage": "jest --coverage",
    "test:watch": "jest --watch --coverage",
    "build": "npm run cleanup; tsc",
    "cleanup": "rm -rf ./dist",
    "preversion": "npm run test; npm run build"
  },
  "dependencies": {
    "bson": "^4.7.0",
    "debug": "^4.3.4",
    "extend": "^3.0.2",
    "import-fresh": "^3.3.0",
    "mongodb": "^4.9.0"
  },
  "devDependencies": {
    "@types/extend": "^3.0.1",
    "@types/jest": "^28.1.7",
    "jest": "^28.1.3",
    "ts-jest": "^28.0.8",
    "typescript": "^4.7.4"
  },
  "jest": {
    "verbose": false,
    "transform": {
      "^.+\\.tsx?$": "ts-jest"
    },
    "coverageReporters": [
      "text",
      "lcov",
      "json"
    ],
    "coveragePathIgnorePatterns": [
      "/node_modules/",
      "/test/integration/_importdata/",
      "/test/_helpers.ts"
    ],
    "testRegex": "(/test/[^_][a-zA-Z0-9-/]*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
    "moduleFileExtensions": [
      "ts",
      "tsx",
      "js",
      "jsx",
      "json",
      "node"
    ]
  }
}
