package.json 837 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "htmlparser2",
  3. "description": "Fast & forgiving HTML/XML/RSS parser",
  4. "version": "3.3.0",
  5. "author": "Felix Boehm <me@feedic.com>",
  6. "keywords": ["html", "parser", "streams", "xml", "dom", "rss", "feed", "atom"],
  7. "contributors": ["Chris Winberry <chris@winberry.net>"],
  8. "repository": {
  9. "type": "git",
  10. "url": "git://github.com/fb55/htmlparser2.git"
  11. },
  12. "bugs": {
  13. "mail": "me@feedic.com",
  14. "url": "http://github.com/fb55/htmlparser2/issues"
  15. },
  16. "directories": {
  17. "lib": "lib/"
  18. },
  19. "main": "lib/index.js",
  20. "scripts": {
  21. "test": "mocha -R spec"
  22. },
  23. "dependencies": {
  24. "domhandler": "2.1",
  25. "domutils": "1.1",
  26. "domelementtype": "1",
  27. "readable-stream": "1.0"
  28. },
  29. "devDependencies": {
  30. "mocha": "1"
  31. },
  32. "licenses": [{
  33. "type": "MIT",
  34. "url": "http://github.com/fb55/htmlparser2/raw/master/LICENSE"
  35. }]
  36. }