package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "crafatar",
  3. "version": "1.0.0",
  4. "private": true,
  5. "author": "Jake0oo0",
  6. "description": "A Minecraft avatar service with support for avatars, 1.8 skins, and even 3D 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 'lib/config.example.js' 'lib/config.js'",
  25. "start": "forever -l logs/log.log -o logs/out.log -e logs/error.log -p ./ -a --minUptime 8000 --spinSleepTime 1500 lib/www.js",
  26. "test": "mocha",
  27. "test-travis": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
  28. },
  29. "engines": {
  30. "iojs": "1.6.x"
  31. },
  32. "dependencies": {
  33. "canvas": "crafatar/node-canvas",
  34. "forever": "0.14.1",
  35. "jade": "~1.9.1",
  36. "lwip": "0.0.6",
  37. "mime": "1.3.4",
  38. "node-df": "0.1.1",
  39. "redis": "0.12.1",
  40. "request": "^2.51.0"
  41. },
  42. "devDependencies": {
  43. "coveralls": "^2.11.2",
  44. "istanbul": "^0.3.2",
  45. "mocha": "2.1.0",
  46. "mocha-lcov-reporter": "0.0.1"
  47. }
  48. }