package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name": "parse-bmfont-xml",
  3. "version": "1.1.6",
  4. "description": "parses XML BMFont files into a JavaScript object",
  5. "main": "lib/index.js",
  6. "browser": "lib/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. "xml-parse-from-string": "^1.0.0",
  15. "xml2js": "^0.5.0"
  16. },
  17. "devDependencies": {
  18. "brfs": "^1.4.0",
  19. "browserify": "^9.0.3",
  20. "faucet": "0.0.1",
  21. "tape": "^3.5.0",
  22. "testling": "^1.7.1",
  23. "xhr": "^2.0.1"
  24. },
  25. "scripts": {
  26. "test-browser": "browserify test/test-browser.js -t brfs | testling | faucet",
  27. "test-node": "node test/test.js | faucet",
  28. "test": "npm run test-node && npm run test-browser"
  29. },
  30. "keywords": [
  31. "xml",
  32. "parse",
  33. "convert",
  34. "bmfont",
  35. "bm",
  36. "bitmap",
  37. "font",
  38. "bitmaps",
  39. "angel",
  40. "angelcode",
  41. "code",
  42. "text",
  43. "gl",
  44. "sprite",
  45. "sprites",
  46. "stackgl"
  47. ],
  48. "repository": {
  49. "type": "git",
  50. "url": "git://github.com/mattdesl/parse-bmfont-xml.git"
  51. },
  52. "homepage": "https://github.com/mattdesl/parse-bmfont-xml",
  53. "bugs": {
  54. "url": "https://github.com/mattdesl/parse-bmfont-xml/issues"
  55. }
  56. }