{
  "name": "jsonapi-server-mini",
  "version": "4.3.7",
  "description": "Minimalistic JSON:API server for Node.js and MongoDB",
  "main": "index.js",
  "engines": {
    "node": ">=8.0"
  },
  "scripts": {
    "coverage": "NODE_ENV=test nyc -a report --reporter=text-lcov mocha > coverage/lcov.info",
    "lint:js": "eslint .",
    "start": "nodemon ./test2",
    "start-docker": "docker run -d -p 27017:27017 --rm --name jsonapi-server-mini-mongo mongo",
    "stop-docker": "docker stop jsonapi-server-mini-mongo",
    "test-watch": "NODE_ENV=test mocha --recursive -w --reporter min",
    "test-mocha": "NODE_ENV=test mocha --inspect --recursive test",
    "test-single": "NODE_ENV=test mocha test/actions/create.js",
    "test-nyc": "NODE_ENV=test nyc -a mocha --recursive test",
    "test": "NODE_ENV=test mocha --inspect --recursive test"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/Redsandro/jsonapi-server-mini"
  },
  "keywords": [
    "express",
    "autoroute",
    "jsonapi",
    "routing"
  ],
  "author": "Redsandro Media <info@redsandro.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/Redsandro/jsonapi-server-mini/issues"
  },
  "homepage": "https://github.com/Redsandro/jsonapi-server-mini",
  "devDependencies": {
    "chai": "^4.2.0",
    "chai-http": "^4.2.1",
    "eslint": "^5.9.0",
    "express": "^4.16.4",
    "istanbul": "^0.4.4",
    "jsonschema": "^1.2.4",
    "lodash": "^4.17.11",
    "mocha": "^5.2.0",
    "nyc": "^13.1.0",
    "q": "^1.0.1",
    "supertest": "^3.3.0"
  },
  "dependencies": {
    "body-parser": "^1.18.3",
    "camelcase": "^5.0.0",
    "camelcase-keys": "^5.0.0",
    "cors": "^2.8.5",
    "jsonapi-serializer": "^3.6.4",
    "mongoose": "^5.4.15",
    "morgan": "^1.9.1",
    "pluralize": "^7.0.0",
    "recursive-readdir": "^2.2.2",
    "winston": "^3.1.0"
  }
}
