package.json 1.2 KB

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