{
  "name": "arangojs",
  "version": "6.5.0",
  "license": "Apache-2.0",
  "description": "The official ArangoDB JavaScript driver.",
  "homepage": "https://github.com/arangodb/arangojs",
  "bugs": {
    "url": "https://github.com/arangodb/arangojs/issues"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/arangodb/arangojs.git"
  },
  "author": "ArangoDB GmbH",
  "contributors": [
    {
      "name": "Alan Plum",
      "email": "me@pluma.io"
    }
  ],
  "keywords": [
    "arango",
    "arangodb",
    "aql",
    "nosql",
    "client",
    "driver",
    "api",
    "http",
    "rest"
  ],
  "main": "lib/index.js",
  "typings": "lib/cjs/arangojs.d.ts",
  "browser": {
    "./lib/index.js": "./lib/cjs/index.js",
    "./lib/cjs/util/btoa.js": "./lib/cjs/util/btoa.web.js",
    "./lib/cjs/util/bytelength.js": "./lib/cjs/util/bytelength.web.js",
    "./lib/cjs/util/joinPath.js": "./lib/cjs/util/joinPath.web.js",
    "./lib/cjs/util/multipart.js": "./lib/cjs/util/multipart.web.js",
    "./lib/cjs/util/request.js": "./lib/cjs/util/request.web.js"
  },
  "files": [
    "lib/*.*",
    "lib/async/*.*",
    "lib/async/util/*.*",
    "lib/cjs/*.*",
    "lib/cjs/util/*.*"
  ],
  "scripts": {
    "test": "mocha --growl --reporter spec --require source-map-support/register --timeout 10000 lib/async/test",
    "pretest": "yarn dist",
    "ci": "mocha --reporter spec --require source-map-support/register --timeout 10000 lib/cjs/test",
    "preci": "yarn install",
    "jenkins": "yarn ci -- --timeout 0 --reporter xunit-file",
    "dist:cjs": "tsc -p . --outDir ./lib/cjs/ --declarationMap true && cpy src/index.js lib/cjs/",
    "dist:async": "tsc -p . --outDir ./lib/async/ --target es2018 --declarationMap true && cpy src/index.js lib/async/",
    "dist:web": "webpack",
    "dist": "rimraf lib && npm-run-all --parallel dist:* && cpy src/index.all.js --rename index.js lib/",
    "prepare": "yarn dist && node -e 'require(\".\");'"
  },
  "dependencies": {
    "es6-error": "^4.0.1",
    "linkedlist": "^1.0.1",
    "multi-part": "^2.0.0",
    "utf8-length": "^0.0.1",
    "xhr": "^2.4.1"
  },
  "devDependencies": {
    "@types/chai": "^4.0.10",
    "@types/mocha": "^5.2.1",
    "@types/node": "^10.0.8",
    "arangodb-instance-manager": "^0.1.1",
    "babel-core": "^6.26.0",
    "babel-eslint": "^8.0.3",
    "babel-loader": "^7.1.2",
    "babel-plugin-transform-class-properties": "^6.24.1",
    "babel-plugin-transform-object-rest-spread": "^6.26.0",
    "babel-preset-env": "^1.6.1",
    "chai": "^4.0.2",
    "cpy-cli": "^2.0.0",
    "eslint": "^4.13.0",
    "eslint-config-prettier": "^2.9.0",
    "eslint-plugin-prettier": "^2.3.1",
    "mocha": "^5.2.0",
    "npm-run-all": "^4.1.2",
    "prettier": "^1.9.1",
    "regenerator-runtime": "^0.11.1",
    "rimraf": "^2.6.2",
    "source-map-support": "^0.5.0",
    "ts-loader": "^3.2.0",
    "typescript": "^2.6.2",
    "webpack": "^3.0.0",
    "xunit-file": "^1.0.0"
  }
}