package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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 'config.example.js' 'config.js'",
  25. "start": "node 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": "2.0.x"
  31. },
  32. "dependencies": {
  33. "canvas": "^1.2.7",
  34. "crc": "~3.3.0",
  35. "jade": "~1.11.0",
  36. "lwip": "~0.0.7",
  37. "mime": "~1.3.4",
  38. "node-df": "crafatar/node-df",
  39. "redis": "~0.12.1",
  40. "request": "~2.60.0",
  41. "toobusy-js": "~0.4.2"
  42. },
  43. "devDependencies": {
  44. "coveralls": "~2.11.4",
  45. "istanbul": "~0.3.17",
  46. "mocha": "~2.2.5",
  47. "mocha-lcov-reporter": "~0.0.2"
  48. }
  49. }