package.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "name": "htmlparser2",
  3. "description": "Fast & forgiving HTML/XML/RSS parser",
  4. "version": "3.10.1",
  5. "author": "Felix Boehm <me@feedic.com>",
  6. "keywords": [
  7. "html",
  8. "parser",
  9. "streams",
  10. "xml",
  11. "dom",
  12. "rss",
  13. "feed",
  14. "atom"
  15. ],
  16. "repository": {
  17. "type": "git",
  18. "url": "git://github.com/fb55/htmlparser2.git"
  19. },
  20. "bugs": {
  21. "mail": "me@feedic.com",
  22. "url": "http://github.com/fb55/htmlparser2/issues"
  23. },
  24. "directories": {
  25. "lib": "lib/"
  26. },
  27. "main": "lib/index.js",
  28. "files": [
  29. "lib"
  30. ],
  31. "scripts": {
  32. "lcov": "istanbul cover _mocha --report lcovonly -- -R spec",
  33. "coveralls": "npm run lint && npm run lcov && (cat coverage/lcov.info | coveralls || exit 0)",
  34. "test": "mocha && npm run lint",
  35. "lint": "eslint lib test"
  36. },
  37. "dependencies": {
  38. "domelementtype": "^1.3.1",
  39. "domhandler": "^2.3.0",
  40. "domutils": "^1.5.1",
  41. "entities": "^1.1.1",
  42. "inherits": "^2.0.1",
  43. "readable-stream": "^3.1.1"
  44. },
  45. "devDependencies": {
  46. "coveralls": "^3.0.1",
  47. "eslint": "^5.13.0",
  48. "istanbul": "^0.4.3",
  49. "mocha": "^5.2.0",
  50. "mocha-lcov-reporter": "^1.2.0"
  51. },
  52. "browser": {
  53. "readable-stream": false
  54. },
  55. "license": "MIT",
  56. "prettier": {
  57. "tabWidth": 4
  58. }
  59. }