package.json 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. {
  2. "name": "jsdom",
  3. "version": "0.2.1",
  4. "description": "A javascript implementation of the W3C DOM",
  5. "keywords": [
  6. "dom",
  7. "w3c",
  8. "javascript"
  9. ],
  10. "maintainers": [{
  11. "name": "Elijah Insua",
  12. "email": "tmpvar@gmail.com",
  13. "web": "http://tmpvar.com"
  14. }],
  15. "contributors": [
  16. {
  17. "name": "Vincent Greene",
  18. "email": "ulteriorlife@gmail.com"
  19. },
  20. {
  21. "name": "Dav Glass",
  22. "email": "davglass@gmail.com"
  23. },
  24. {
  25. "name": "Felix Gnass",
  26. "email": "fgnass@gmail.com"
  27. },
  28. {
  29. "name" : "Charlie Robbins",
  30. "email": "charlie.robbins@gmail.com"
  31. },
  32. {
  33. "name" : "Aria Stewart",
  34. "email": "aredridel@nbtsc.org"
  35. },
  36. {
  37. "name" : "Matthew (http://github.com/matthewpflueger/)",
  38. "email": "N.A."
  39. },
  40. {
  41. "name" : "Olivier El Mekki (http://blog.olivier-elmekki.com/)",
  42. "email" : "unknown"
  43. },
  44. {
  45. "name" : "Shimon Dookdin",
  46. "email" : "helpmepro1@gmail.com"
  47. },
  48. {
  49. "name" : "Daniel Cassidy (http://www.danielcassidy.me.uk/)",
  50. "email" : "mail@danielcassidy.me.uk"
  51. },
  52. {
  53. "name" : "Sam Ruby (http://intertwingly.net/blog/)",
  54. "email" : "N/A"
  55. },
  56. {
  57. "name" : "hij1nx (http://github.com/hij1nx)"
  58. },
  59. {
  60. "name" : "Daniel Cassidy",
  61. "email" : "mail@danielcassidy.me.uk"
  62. },
  63. {
  64. "name" : "Yonathan Randolph (http://github.com/yonran)"
  65. },
  66. {
  67. "name" : "Martin Davis (http://github.com/waslogic)"
  68. },
  69. {
  70. "name": "Andreas Lind Petersen",
  71. "email": "andreas@one.com"
  72. },
  73. {
  74. "name" : "d-ash (http://github.com/d-ash)"
  75. },
  76. {
  77. "name" : "Robin",
  78. "email" : "fbzhong@gmail.com"
  79. },
  80. {
  81. "name" : "Alexander Flatter",
  82. "email" : "flatter@gmail.com"
  83. },
  84. {
  85. "name" : "Heng Liu",
  86. "email" : "liucougar@gmail.com"
  87. }
  88. ],
  89. "bugs": {
  90. "mail": "tmpvar@gmail.com",
  91. "web": "http://github.com/tmpvar/jsdom/issues"
  92. },
  93. "licenses": [
  94. {
  95. "type": "MIT",
  96. "url": "http://github.com/tmpvar/jsdom/blob/master/LICENSE.txt"
  97. }
  98. ],
  99. "repositories": [
  100. {
  101. "type": "git",
  102. "url": "http://github.com/tmpvar/jsdom.git"
  103. }
  104. ],
  105. "implements": [
  106. "http://www.w3.org/TR/REC-DOM-Level-1"
  107. ],
  108. "dependencies": {
  109. "htmlparser": ">=1.7.0",
  110. "request" : ">=1.0.0",
  111. "cssom" : ">=0.2.0"
  112. },
  113. "devDependencies" : {
  114. "nodeunit" : ">=0.5.x",
  115. "console.log" : "*",
  116. "optimist" : "*"
  117. },
  118. "engines" : { "node" : ">=0.1.9" },
  119. "directories": {
  120. "lib": "./lib/jsdom"
  121. },
  122. "main": "./lib/jsdom"
  123. }