package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "crafatar",
  3. "version": "0.0.1",
  4. "private": true,
  5. "author": "Jake0oo0",
  6. "description": "A Minecraft avatar service with support for avatars, skins, and even renders!",
  7. "contributors": [
  8. {
  9. "name": "jomo"
  10. }
  11. ],
  12. "repository": {
  13. "type": "git",
  14. "url": "https://github.com/crafatar/crafatar"
  15. },
  16. "issues": {
  17. "url": "https://github.com/crafatar/crafatar/issues"
  18. },
  19. "keywords": [
  20. "minecraft",
  21. "avatar"
  22. ],
  23. "scripts": {
  24. "postinstall": "cp 'modules/config.example.js' 'modules/config.js'",
  25. "start": "forever -l logs/log.log -o logs/out.log -e logs/error.log -p ./ -a --minUptime 8000 --spinSleepTime 1500 bin/www.js",
  26. "test": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
  27. },
  28. "dependencies": {
  29. "canvas": "1.1.6",
  30. "forever": "^0.13.0",
  31. "jade": "~1.9.1",
  32. "lwip": "0.0.6",
  33. "mime": "1.2.11",
  34. "node-df": "0.1.1",
  35. "redis": "0.12.1",
  36. "request": "^2.51.0"
  37. },
  38. "devDependencies": {
  39. "coveralls": "^2.11.2",
  40. "istanbul": "^0.3.2",
  41. "mocha": "2.1.0",
  42. "mocha-lcov-reporter": "0.0.1"
  43. }
  44. }