package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "crafatar",
  3. "version": "1.0.0",
  4. "private": true,
  5. "description": "A blazing fast API for Minecraft faces!",
  6. "contributors": [
  7. {
  8. "name": "jomo",
  9. "url": "https://github.com/jomo"
  10. },
  11. {
  12. "name": "Jake",
  13. "url": "https://github.com/Jake0oo0"
  14. }
  15. ],
  16. "repository": {
  17. "type": "git",
  18. "url": "https://github.com/crafatar/crafatar"
  19. },
  20. "issues": {
  21. "url": "https://github.com/crafatar/crafatar/issues"
  22. },
  23. "keywords": [
  24. "minecraft",
  25. "avatar"
  26. ],
  27. "scripts": {
  28. "postinstall": "cp 'config.example.js' 'config.js'",
  29. "start": "node www.js",
  30. "test": "mocha",
  31. "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"
  32. },
  33. "engines": {
  34. "node": "4.2.4"
  35. },
  36. "dependencies": {
  37. "canvas": "^1.3.9",
  38. "crc": "~3.4.0",
  39. "ejs": "^2.3.4",
  40. "lwip": "~0.0.8",
  41. "mime": "~1.3.4",
  42. "node-df": "crafatar/node-df",
  43. "redis": "~2.4.2",
  44. "request": "~2.67.0",
  45. "toobusy-js": "~0.4.2"
  46. },
  47. "devDependencies": {
  48. "coveralls": "~2.11.6",
  49. "istanbul": "~0.4.2",
  50. "mocha": "~2.4.1",
  51. "mocha-lcov-reporter": "~1.0.0"
  52. }
  53. }