{
  "name": "node-norm",
  "version": "1.5.0",
  "description": "Norm is Not ORM though data access layer",
  "main": "index.js",
  "scripts": {
    "test": "mocha test/node/**",
    "test:watch": "mocha test/node/** -w",
    "lint": "eslint .",
    "lint-staged": "lint-staged",
    "coverage": "nyc --check-coverage --report-dir=./coverage --reporter=html --reporter=text mocha test/node/**",
    "prepare": "husky"
  },
  "author": "Ganesha <reekoheek@gmail.com>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/xinix-technology/node-norm.git"
  },
  "files": [
    "adapters",
    "errors",
    "filters",
    "observers",
    "schemas",
    "connection.js",
    "context.js",
    "filter.js",
    "index.js",
    "manager.js",
    "model.js",
    "pool.js",
    "query.js",
    "schema.js",
    "session.js"
  ],
  "dependencies": {
    "async-factory": "^1.0.0",
    "bcryptjs": "^3.0.3",
    "big.js": "^7.0.1",
    "fs-extra": "^11.3.4",
    "generic-pool": "^3.9.0",
    "koa-compose": "^4.1.0",
    "uuid": "^14.0.0"
  },
  "devDependencies": {
    "eslint": "^8.57.1",
    "eslint-config-xinix": "^2.0.2",
    "husky": "^9.1.7",
    "lint-staged": "^16.4.0",
    "mocha": "^11.7.5",
    "nyc": "^18.0.0"
  },
  "overrides": {
    "diff": "^8.0.3",
    "minimatch": "^9.0.7",
    "serialize-javascript": "^7.0.5",
    "uuid": "^14.0.0"
  },
  "lint-staged": {
    "*.js": [
      "eslint"
    ]
  }
}
