{
  "name": "faunadb",
  "version": "4.8.2",
  "apiVersion": "4",
  "description": "FaunaDB Javascript driver for Node.JS and Browsers",
  "homepage": "https://fauna.com",
  "repository": "fauna/faunadb-js",
  "license": "MPL-2.0",
  "keywords": [
    "database",
    "fauna",
    "official",
    "driver"
  ],
  "bugs": {
    "url": "https://github.com/fauna/faunadb-js/issues"
  },
  "files": [
    "index.d.ts",
    "src/",
    "dist/",
    "tools/printReleaseNotes.js"
  ],
  "main": "index.js",
  "scripts": {
    "doc": "jsdoc -c ./jsdoc.json",
    "browserify": "browserify index.js --standalone faunadb -o dist/faunadb.js",
    "browserify-min": "browserify index.js --standalone faunadb | terser -c -m --keep-fnames --keep-classnames -o dist/faunadb-min.js",
    "prettify": "prettier --write \"{src,test}/**/*.{js,ts}\"",
    "test": "jest --env=node --verbose=true --forceExit --runInBand ./test",
    "posttest": "node ./test/afterComplete",
    "semantic-release": "semantic-release",
    "wp": "webpack",
    "postinstall": "node ./tools/printReleaseNotes",
    "postupdate": "node ./tools/printReleaseNotes",
    "load-test": "node ./tools/loadTest"
  },
  "types": "index.d.ts",
  "dependencies": {
    "base64-js": "^1.2.0",
    "boxen": "^5.0.1",
    "btoa-lite": "^1.0.0",
    "chalk": "^4.1.1",
    "cross-fetch": "^3.1.5",
    "dotenv": "^8.2.0",
    "fn-annotate": "^1.1.3",
    "node-abort-controller": "^3.0.1",
    "object-assign": "^4.1.0",
    "util-deprecate": "^1.0.2"
  },
  "devDependencies": {
    "ansi-regex": ">=5.0.1",
    "browserify": "^16.2.2",
    "eslint": "^5.3.0",
    "eslint-config-prettier": "^6.5.0",
    "eslint-plugin-prettier": "^3.1.1",
    "husky": "^7.0.4",
    "jest": "^27.4.7",
    "jsdoc": "^3.6.10",
    "json-schema": ">=0.4.0",
    "lint-staged": ">=8",
    "marked": ">=4.0.10",
    "prettier": "1.18.2",
    "semantic-release": "^19.0.3",
    "terser": "^4.3.9",
    "webpack": "^5.23.0",
    "webpack-cli": "^4.5.0",
    "yargs": "^16.2.0"
  },
  "lint-staged": {
    "*.{js,css,json,md}": [
      "prettier --write",
      "git add"
    ],
    "*.js": [
      "eslint --fix",
      "git add"
    ]
  },
  "release": {
    "branches": [
      "main"
    ]
  },
  "browser": {
    "http2": false,
    "http": false,
    "https": false,
    "os": false,
    "util": false,
    "boxen": false,
    "chalk": false
  }
}
