1
0

package.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. "chai": "^3.2.0",
  27. "coveralls": "^2.11.4",
  28. "istanbul": "^0.3.18",
  29. "mocha": "~2.2.5",
  30. "should": "~7.0.2",
  31. "sinon": "~1.15.4",
  32. "supertest": "~1.0.1"
  33. },
  34. "scripts": {
  35. "test-local": "NODE_ENV=test mocha test/*",
  36. "test": "NODE_ENV=test ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- -R spec test/*",
  37. "start": "app.js",
  38. "stop": "pkill -SIGINT CloudBudget"
  39. },
  40. "license": "MIT"
  41. }