package.json 3.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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.4.23",
  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. ],
  58. "main": "./lib/xml2js",
  59. "files": [
  60. "lib"
  61. ],
  62. "directories": {
  63. "lib": "./lib"
  64. },
  65. "scripts": {
  66. "build": "cake build",
  67. "test": "zap",
  68. "coverage": "nyc npm test && nyc report",
  69. "coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
  70. "doc": "cake doc"
  71. },
  72. "repository": {
  73. "type": "git",
  74. "url": "https://github.com/Leonidas-from-XIV/node-xml2js.git"
  75. },
  76. "dependencies": {
  77. "sax": ">=0.6.0",
  78. "xmlbuilder": "~11.0.0"
  79. },
  80. "devDependencies": {
  81. "coffee-script": ">=1.10.0",
  82. "coveralls": "^3.0.1",
  83. "diff": ">=1.0.8",
  84. "docco": ">=0.6.2",
  85. "nyc": ">=2.2.1",
  86. "zap": ">=0.2.9"
  87. },
  88. "engines": {
  89. "node": ">=4.0.0"
  90. },
  91. "license": "MIT"
  92. }