package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "load-bmfont",
  3. "version": "1.4.2",
  4. "description": "loads a BMFont file in Node and the browser",
  5. "main": "index.js",
  6. "browser": "browser.js",
  7. "license": "MIT",
  8. "author": {
  9. "name": "Matt DesLauriers",
  10. "email": "dave.des@gmail.com",
  11. "url": "https://github.com/mattdesl"
  12. },
  13. "dependencies": {
  14. "buffer-equal": "0.0.1",
  15. "mime": "^1.3.4",
  16. "parse-bmfont-ascii": "^1.0.3",
  17. "parse-bmfont-binary": "^1.0.5",
  18. "parse-bmfont-xml": "^1.1.4",
  19. "phin": "^3.7.1",
  20. "xhr": "^2.0.1",
  21. "xtend": "^4.0.0"
  22. },
  23. "devDependencies": {
  24. "browserify": "^9.0.3",
  25. "tap-spec": "^2.2.2",
  26. "tape": "^3.5.0",
  27. "testling": "^1.7.1"
  28. },
  29. "scripts": {
  30. "test-node": "(node test.js; node test-server.js) | tap-spec",
  31. "test-browser": "browserify test.js | testling | tap-spec",
  32. "test": "npm run test-node && npm run test-browser"
  33. },
  34. "keywords": [
  35. "bmfont",
  36. "bitmap",
  37. "font",
  38. "angel",
  39. "code",
  40. "angelcode",
  41. "parse",
  42. "ascii",
  43. "xml",
  44. "text",
  45. "json"
  46. ],
  47. "repository": {
  48. "type": "git",
  49. "url": "git://github.com/Jam3/load-bmfont.git"
  50. },
  51. "homepage": "https://github.com/Jam3/load-bmfont",
  52. "bugs": {
  53. "url": "https://github.com/Jam3/load-bmfont/issues"
  54. }
  55. }