{
  "name": "cruddl",
  "version": "4.2.4",
  "description": "",
  "license": "MIT",
  "main": "dist/index.js",
  "types": "./dist/index.d.ts",
  "scripts": {
    "build": "./build.sh",
    "prepublishOnly": "npm run build",
    "typecheck": "tsc --noEmit --skipLibCheck",
    "test": "rimraf dist && tsc --noEmit --skipLibCheck && mocha './spec/**/*.spec.ts'",
    "test:dropdb": "ts-node ./spec/regression/drop-test-db.ts",
    "test:perf": "node cruddl-bench",
    "test:coverage": "nyc --reporter=text-summary npm test",
    "test:coverage:full": "nyc --reporter=html npm test",
    "start": "node cruddl",
    "start_arangodb": "arangodb --starter.mode=single --starter.local --starter.port=8528 --starter.data-dir=./db start",
    "stop_arangodb": "arangodb --starter.mode=single --starter.local --starter.port=8528 --starter.data-dir=./db stop",
    "compile-json-schema": "ajv --all-errors true compile -s src/schema/preparation/source-validation-modules/schema/schema.json -o src/schema/preparation/source-validation-modules/schema/validate-schema.js",
    "mrproper": "rimraf dist db node_modules package-lock.json",
    "prepare": "husky install",
    "dev": "node cruddl-dev.js",
    "knip": "knip",
    "knip:prod": "knip --production"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/AEB-labs/cruddl.git"
  },
  "publishConfig": {
    "registry": "https://registry.npmjs.org/"
  },
  "author": "",
  "browser": {
    "@arangodb": false
  },
  "engines": {
    "npm": ">=6.0.0",
    "node": ">=18.0.0"
  },
  "devDependencies": {
    "@graphql-tools/utils": "^8.8.0",
    "@types/chai": "^4.3.3",
    "@types/chai-as-promised": "^7.1.5",
    "@types/deep-equal": "^1.0.1",
    "@types/deep-equal-in-any-order": "^1.0.1",
    "@types/lodash": "^4.14.184",
    "@types/mocha": "10.0.6",
    "@types/node": "^18.19.42",
    "@types/pluralize": "0.0.29",
    "@types/uuid": "^8.3.4",
    "ajv-cli": "^5.0.0",
    "apollo-server": "^3.10.0",
    "body-parser": "^1.20.2",
    "chai": "^4.3.6",
    "chai-as-promised": "^7.1.1",
    "cors": "^2.8.5",
    "cpy-cli": "^4.1.0",
    "deep-equal-in-any-order": "^1.1.20",
    "express": "^4.19.2",
    "graphql": "^16.6.0",
    "husky": "^8.0.1",
    "knip": "^5.27.0",
    "lint-staged": "^15.2.10",
    "log4js": "^6.6.0",
    "mocha": "^11.7.1",
    "nyc": "^15.1.0",
    "prettier": "^3.3.3",
    "rimraf": "^3.0.2",
    "stats-lite": "^2.2.0",
    "ts-node": "^10.8.2",
    "typescript": "~5.5.4"
  },
  "dependencies": {
    "@graphql-tools/schema": "^8.5.0",
    "@js-joda/core": "^5.2.0",
    "ajv": "^8.11.0",
    "ansi-styles": "^5.2.0",
    "arangojs": "^8.1.0",
    "deep-equal": "^2.0.5",
    "graphql-tag": "^2.12.4",
    "graphql-type-json": "^0.3.2",
    "json-lint": "^0.1.0",
    "json-source-map": "^0.6.1",
    "lodash": "^4.17.21",
    "memorize-decorator": "^0.2.2",
    "pluralize": "^8.0.0",
    "strip-json-comments": "^3.0.1",
    "tslib": "^2.4.0",
    "uuid": "^8.3.2",
    "yaml": "^2.8.1",
    "yaml-ast-parser": "0.0.43"
  },
  "peerDependencies": {
    "graphql": "^15.0.0 || ^16.0.0"
  },
  "nyc": {
    "include": [
      "src/*.ts",
      "src/**/*.ts"
    ],
    "exclude": [
      "src/**/*.d.ts"
    ],
    "extension": [
      ".ts"
    ],
    "require": [
      "ts-node/register"
    ],
    "all": true
  },
  "husky": {
    "hooks": {
      "pre-commit": "npx lint-staged"
    }
  },
  "lint-staged": {
    "*": "prettier --ignore-unknown --write"
  }
}
