{
  "name": "json-schema-sequelizer",
  "version": "0.25.2",
  "main": "lib/index.js",
  "author": "Alvaro Cabrera <pateketrueke@gmail.com>",
  "description": "Sequelize models with JSON-Schema powers!",
  "license": "MIT",
  "types": "index.d.ts",
  "files": [
    "lib/*",
    "cli/*",
    "*.d.ts"
  ],
  "engines": {
    "node": "*"
  },
  "scripts": {
    "dev": "npm test -- -w",
    "lint": "eslint lib tests",
    "test": "npm run test:unit --",
    "test:ci": "npm run coverage:all && npm run report -- -r lcov",
    "test:all": "npm run test:run tests && npm run report -- -r html",
    "test:run": "NODE_ENV=test _mocha --exit --colors --recursive --watch-ignore '**/sandbox/**' -bR spec",
    "test:unit": "npm run test:run tests --",
    "coverage": "nyc -x '**/tests/**' -x '**/*.test.js'",
    "coverage:all": "npm run coverage -- npm run test:all",
    "coverage:unit": "npm run coverage -- npm run test:unit",
    "codecov": "codecov --file=coverage/lcov.info -e TRAVIS_NODE_VERSION",
    "report": "nyc report",
    "_pretest": "npm run lint"
  },
  "devDependencies": {
    "chai": "^4.2.0",
    "codecov": "^3.1.0",
    "eslint": "^7.2.0",
    "eslint-config-airbnb-base": "^14.0.0",
    "eslint-plugin-import": "^2.18.2",
    "mocha": "^8.2.1",
    "nyc": "^15.1.0",
    "pg": "^8.7.3",
    "sqlite3": "^5.0.0",
    "testdouble": "^3.16.6"
  },
  "dependencies": {
    "@apidevtools/json-schema-ref-parser": "^10.1.0",
    "@types/json-schema": "^7.0.9",
    "@types/umzug": "^2.3.2",
    "fast-glob": "^3.3.0",
    "fs-extra": "^11.1.1",
    "sequelize": "^6.32.1",
    "type-fest": "^3.13.0",
    "umzug": "^3.1.1",
    "wargs": "^0.10.0"
  }
}
