UNPKG

yabaas

Version:

Yet Another Backend as a Service

70 lines (69 loc) 1.85 kB
{ "name": "yabaas", "version": "0.2.28", "description": "Yet Another Backend as a Service", "scripts": { "prestart": "npm install --silent --ignore-scripts --progress=false --unsafe-perm", "pretest": "npm run lint", "start": "DEBUG=yabaas:* nodemon ./bin/www", "start:production": "nodemon ./bin/www", "test": "npm run test:unit && npm run test:integration", "test:integration": "DEBUG=yabaas:* mocha test/*_spec.js", "test:unit": "DEBUG=yabaas:* istanbul cover _mocha services/**/*.test.js", "lint": "standard", "lint:fix": "standard --fix", "doc:api": "apidoc -i services/ -o public/doc/" }, "keywords": [ "backend" ], "author": "Sergio Alonso <sergio@sergioalonso.es>", "contributors": [ "Alejandro Sagrado <alejandro.sagrado@gmail.com>", "David Jimenez <davidjj76@gmail.com>", "Javier Perez <javierperezmegia@gmail.com>" ], "standard": { "ignore": [ "/public/doc/" ] }, "apidoc": { "url": "http://127.0.0.1:6789" }, "license": "GPL-3.0", "dependencies": { "amqplib": "^0.5.1", "api-query-params": "^4.5.0", "body-parser": "~1.17.1", "config": "^1.26.2", "cookie-parser": "~1.4.3", "debug": "~2.6.3", "express": "~4.15.2", "jsonwebtoken": "^8.0.0", "lodash": "^4.17.4", "mongo-query-compiler": "^1.0.0", "mongodb": "^2.2.31", "morgan": "~1.8.1", "multer": "^1.3.0", "nodemailer": "^4.1.0", "nodemon": "^1.12.1", "passport": "^0.4.0", "passport-jwt": "^3.0.0", "slug": "0.9.1" }, "devDependencies": { "apidoc": "^0.17.6", "chai": "4.1.2", "chakram": "^1.5.0", "istanbul": "^0.4.5", "maildev": "^1.0.0-rc3", "mocha": "^3.5.3", "should": "^13.1.2", "sinon": "4.0.2", "standard": "^10.0.3" }, "engines": { "node": "8.5.0" } }