package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "cloud-budget",
  3. "main": "app.js",
  4. "repository": {
  5. "type": "git",
  6. "url": "https://github.com/Febbweiss/CloudBudget"
  7. },
  8. "bugs": {
  9. "url": "https://github.com/Febbweiss/CloudBudget/issues"
  10. },
  11. "dependencies": {
  12. "express": "~4.5.1",
  13. "mongoose": "~4.0.8",
  14. "body-parser": "~1.4.2",
  15. "method-override": "~2.0.2",
  16. "morgan": "~1.6.0",
  17. "file-stream-rotator": "~0.0.6",
  18. "errorhandler": "~1.4.1",
  19. "jsonwebtoken": "~5.0.4",
  20. "bcrypt": "~0.8.3",
  21. "passport": "~0.2.2",
  22. "passport-local": "~1.0.0",
  23. "passport-jwt": "~1.1.0"
  24. },
  25. "devDependencies": {
  26. "apidoc": "^0.13.1",
  27. "chai": "^3.2.0",
  28. "coveralls": "^2.11.4",
  29. "istanbul": "^0.3.18",
  30. "mocha": "~2.2.5",
  31. "should": "~7.0.2",
  32. "sinon": "~1.15.4",
  33. "supertest": "~1.0.1"
  34. },
  35. "scripts": {
  36. "generate-doc": "./node_modules/apidoc/bin/apidoc -i app/ -o public",
  37. "test-local": "NODE_ENV=test ./node_modules/mocha/bin/mocha test/*",
  38. "test": "NODE_ENV=test ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- -R spec test/*",
  39. "start": "app.js",
  40. "stop": "pkill -SIGINT CloudBudget"
  41. },
  42. "license": "MIT"
  43. }