package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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, 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 '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. "engines": {
  29. "iojs": "1.2.x"
  30. },
  31. "dependencies": {
  32. "canvas": "crafatar/node-canvas",
  33. "forever": "0.14.1",
  34. "jade": "~1.9.1",
  35. "lwip": "0.0.6",
  36. "mime": "1.3.4",
  37. "node-df": "0.1.1",
  38. "redis": "0.12.1",
  39. "request": "^2.51.0"
  40. },
  41. "devDependencies": {
  42. "coveralls": "^2.11.2",
  43. "istanbul": "^0.3.2",
  44. "mocha": "2.1.0",
  45. "mocha-lcov-reporter": "0.0.1"
  46. }
  47. }