package.json 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "docstore-sharelatex",
  3. "version": "0.1.2",
  4. "description": "A CRUD API for handling text documents in projects",
  5. "author": "ShareLaTeX <team@sharelatex>",
  6. "repository": {
  7. "type": "git",
  8. "url": "https://github.com/sharelatex/docstore-sharelatex.git"
  9. },
  10. "scripts": {
  11. "compile:app": "([ -e app/coffee ] && coffee -m $COFFEE_OPTIONS -o app/js -c app/coffee || echo 'No CoffeeScript folder to compile') && ( [ -e app.coffee ] && coffee -m $COFFEE_OPTIONS -c app.coffee || echo 'No CoffeeScript app to compile')",
  12. "start": "npm run compile:app && node $NODE_APP_OPTIONS app.js",
  13. "test:acceptance:_run": "AWS_SECRET_ACCESS_KEY=$AWS_SECRET_ACCESS_KEY AWS_BUCKET=$AWS_BUCKET AWS_ACCESS_KEY_ID=$AWS_ACCESS_KEY_ID mocha --recursive --reporter spec --timeout 30000 --exit $@ test/acceptance/js",
  14. "test:acceptance": "npm run compile:app && npm run compile:acceptance_tests && npm run test:acceptance:_run -- --grep=$MOCHA_GREP",
  15. "test:unit:_run": "mocha --recursive --reporter spec --exit $@ test/unit/js",
  16. "test:unit": "npm run compile:app && npm run compile:unit_tests && npm run test:unit:_run -- --grep=$MOCHA_GREP",
  17. "compile:unit_tests": "[ ! -e test/unit/coffee ] && echo 'No unit tests to compile' || coffee -o test/unit/js -c test/unit/coffee",
  18. "compile:acceptance_tests": "[ ! -e test/acceptance/coffee ] && echo 'No acceptance tests to compile' || coffee -o test/acceptance/js -c test/acceptance/coffee",
  19. "compile:all": "npm run compile:app && npm run compile:unit_tests && npm run compile:acceptance_tests && npm run compile:smoke_tests",
  20. "nodemon": "nodemon --config nodemon.json",
  21. "compile:smoke_tests": "[ ! -e test/smoke/coffee ] && echo 'No smoke tests to compile' || coffee -o test/smoke/js -c test/smoke/coffee"
  22. },
  23. "dependencies": {
  24. "async": "~0.8.0",
  25. "body-parser": "~1.0.2",
  26. "coffee-script": "^1.12.7",
  27. "express": "~4.1.1",
  28. "logger-sharelatex": "^1.6.0",
  29. "metrics-sharelatex": "^2.1.1",
  30. "mongojs": "2.4.0",
  31. "settings-sharelatex": "^1.1.0",
  32. "underscore": "~1.6.0"
  33. },
  34. "devDependencies": {
  35. "bunyan": "~0.22.3",
  36. "chai": "~1.9.1",
  37. "mocha": "^4.0.1",
  38. "request": "~2.34.0",
  39. "sandboxed-module": "~0.3.0",
  40. "sinon": "~3.2.1"
  41. },
  42. "engines": {
  43. "node": "~6.14.1"
  44. }
  45. }