{
  "name": "@justlep/camo",
  "version": "1.2.2",
  "description": "A class-based Object-Document Mapper (ODM) for NeDB",
  "type": "module",
  "main": "index.js",
  "engines": {
    "node": ">=14.5.0"
  },
  "scripts": {
    "test": "vitest --no-file-parallelism --environment=node --hookTimeout 10000 --dir test/ run",
    "test:memory-nedb-original": "npm link nedb && npm --nedb_version=original run test",
    "test:memory-nedb-justlep": "npm link @justlep/nedb && npm --nedb_version=justlep run test",
    "test:persistent-nedb-original": "npm link nedb && npm --nedb_version=original --nedb_persistent=true run test",
    "test:persistent-nedb-justlep": "npm link @justlep/nedb && npm --nedb_version=justlep --nedb_persistent=true run test",
    "lint": "eslint --max-warnings 0 index.js lib/ test/"
  },
  "author": "Lennart Pegel <github@justlep.net>",
  "contributors": [
    {
      "name": "Scott Robinson",
      "email": "s.w.robinson@gmail.com",
      "url": "https://github.com/scottwrobinson/camo"
    }
  ],
  "keywords": [
    "es6",
    "odm",
    "nedb",
    "nosql",
    "document",
    "model",
    "schema",
    "database",
    "data",
    "datastore",
    "query",
    "db"
  ],
  "homepage": "https://github.com/justlep/camo",
  "repository": {
    "type": "git",
    "url": "https://github.com/justlep/camo.git"
  },
  "license": "MIT",
  "dependencies": {
    "depd": "^2.0.0"
  },
  "devDependencies": {
    "@eslint/js": "^9.18.0",
    "eslint": "^9.18.0",
    "globals": "^15.14.0",
    "vitest": "^3.0.4"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  }
}
