package.json 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. {
  2. "name": "xml2js",
  3. "description": "Simple XML to JavaScript object converter.",
  4. "keywords": [
  5. "xml",
  6. "json"
  7. ],
  8. "homepage": "https://github.com/Leonidas-from-XIV/node-xml2js",
  9. "version": "0.5.0",
  10. "author": "Marek Kubica <marek@xivilization.net> (https://xivilization.net)",
  11. "contributors": [
  12. "maqr <maqr.lollerskates@gmail.com> (https://github.com/maqr)",
  13. "Ben Weaver (http://benweaver.com/)",
  14. "Jae Kwon (https://github.com/jaekwon)",
  15. "Jim Robert",
  16. "Ștefan Rusu (http://www.saltwaterc.eu/)",
  17. "Carter Cole <carter.cole@cartercole.com> (http://cartercole.com/)",
  18. "Kurt Raschke <kurt@kurtraschke.com> (http://www.kurtraschke.com/)",
  19. "Contra <contra@australia.edu> (https://github.com/Contra)",
  20. "Marcelo Diniz <marudiniz@gmail.com> (https://github.com/mdiniz)",
  21. "Michael Hart (https://github.com/mhart)",
  22. "Zachary Scott <zachary@zacharyscott.net> (http://zacharyscott.net/)",
  23. "Raoul Millais (https://github.com/raoulmillais)",
  24. "Salsita Software (http://www.salsitasoft.com/)",
  25. "Mike Schilling <mike@emotive.com> (http://www.emotive.com/)",
  26. "Jackson Tian <shyvo1987@gmail.com> (http://weibo.com/shyvo)",
  27. "Mikhail Zyatin <mikhail.zyatin@gmail.com> (https://github.com/Sitin)",
  28. "Chris Tavares <ctavares@microsoft.com> (https://github.com/christav)",
  29. "Frank Xu <yyfrankyy@gmail.com> (http://f2e.us/)",
  30. "Guido D'Albore <guido@bitstorm.it> (http://www.bitstorm.it/)",
  31. "Jack Senechal (http://jacksenechal.com/)",
  32. "Matthias Hölzl <tc@xantira.com> (https://github.com/hoelzl)",
  33. "Camille Reynders <info@creynders.be> (http://www.creynders.be/)",
  34. "Taylor Gautier (https://github.com/tsgautier)",
  35. "Todd Bryan (https://github.com/toddrbryan)",
  36. "Leore Avidar <leore.avidar@gmail.com> (http://leoreavidar.com/)",
  37. "Dave Aitken <dave.aitken@gmail.com> (http://www.actionshrimp.com/)",
  38. "Shaney Orrowe <shaney.orrowe@practiceweb.co.uk>",
  39. "Candle <candle@candle.me.uk>",
  40. "Jess Telford <hi@jes.st> (http://jes.st)",
  41. "Tom Hughes <<tom@compton.nu> (http://compton.nu/)",
  42. "Piotr Rochala (http://rocha.la/)",
  43. "Michael Avila (https://github.com/michaelavila)",
  44. "Ryan Gahl (https://github.com/ryedin)",
  45. "Eric Laberge <e.laberge@gmail.com> (https://github.com/elaberge)",
  46. "Benjamin E. Coe <ben@npmjs.com> (https://twitter.com/benjamincoe)",
  47. "Stephen Cresswell (https://github.com/cressie176)",
  48. "Pascal Ehlert <pascal@hacksrus.net> (http://www.hacksrus.net/)",
  49. "Tom Spencer <fiznool@gmail.com> (http://fiznool.com/)",
  50. "Tristian Flanagan <tflanagan@datacollaborative.com> (https://github.com/tflanagan)",
  51. "Tim Johns <timjohns@yahoo.com> (https://github.com/TimJohns)",
  52. "Bogdan Chadkin <trysound@yandex.ru> (https://github.com/TrySound)",
  53. "David Wood <david.p.wood@gmail.com> (http://codesleuth.co.uk/)",
  54. "Nicolas Maquet (https://github.com/nmaquet)",
  55. "Lovell Fuller (http://lovell.info/)",
  56. "d3adc0d3 (https://github.com/d3adc0d3)",
  57. "James Crosby (https://github.com/autopulated)"
  58. ],
  59. "main": "./lib/xml2js",
  60. "files": [
  61. "lib"
  62. ],
  63. "directories": {
  64. "lib": "./lib"
  65. },
  66. "scripts": {
  67. "build": "cake build",
  68. "test": "zap",
  69. "coverage": "nyc npm test && nyc report",
  70. "coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
  71. "doc": "cake doc"
  72. },
  73. "repository": {
  74. "type": "git",
  75. "url": "https://github.com/Leonidas-from-XIV/node-xml2js.git"
  76. },
  77. "dependencies": {
  78. "sax": ">=0.6.0",
  79. "xmlbuilder": "~11.0.0"
  80. },
  81. "devDependencies": {
  82. "coffee-script": ">=1.10.0",
  83. "coveralls": "^3.0.1",
  84. "diff": ">=1.0.8",
  85. "docco": ">=0.6.2",
  86. "nyc": ">=2.2.1",
  87. "zap": ">=0.2.9"
  88. },
  89. "engines": {
  90. "node": ">=4.0.0"
  91. },
  92. "license": "MIT"
  93. }