package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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, skins, and even renders!",
  7. "contributors": [
  8. {
  9. "name": "jomo"
  10. }
  11. ],
  12. "repository": {
  13. "type": "git",
  14. "url": "https://github.com/Jake0oo0/crafatar"
  15. },
  16. "issues": {
  17. "url": "https://github.com/Jake0oo0/crafatar/issues"
  18. },
  19. "keywords": [
  20. "minecraft",
  21. "avatar"
  22. ],
  23. "scripts": {
  24. "postinstall": "cp 'modules/config.example.js' 'modules/config.js'",
  25. "start": "node 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. "dependencies": {
  29. "canvas": "1.1.6",
  30. "jade": "~1.8.2",
  31. "lwip": "0.0.6",
  32. "redis": "0.12.1",
  33. "request": "2.51.0",
  34. "node-df": "0.1.1",
  35. "mime": "1.2.11"
  36. },
  37. "devDependencies": {
  38. "coveralls": "^2.11.2",
  39. "istanbul": "^0.3.2",
  40. "mocha": "2.1.0",
  41. "mocha-lcov-reporter": "0.0.1"
  42. }
  43. }