설명 없음

package.json 1.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. {
  2. "name": "htmlparser2",
  3. "description": "Fast & forgiving HTML/XML/RSS parser",
  4. "version": "3.8.3",
  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. "scripts": {
  29. "lcov": "istanbul cover _mocha --report lcovonly -- -R spec",
  30. "coveralls": "npm run lint && npm run lcov && (cat coverage/lcov.info | coveralls || exit 0)",
  31. "test": "mocha && npm run lint",
  32. "lint": "jshint lib test && jscs lib test"
  33. },
  34. "dependencies": {
  35. "domhandler": "2.3",
  36. "domutils": "1.5",
  37. "domelementtype": "1",
  38. "readable-stream": "1.1",
  39. "entities": "1.0"
  40. },
  41. "devDependencies": {
  42. "mocha": "1",
  43. "mocha-lcov-reporter": "*",
  44. "coveralls": "*",
  45. "istanbul": "*",
  46. "jscs": "1.5.8",
  47. "jshint": "2"
  48. },
  49. "browser": {
  50. "readable-stream": false
  51. },
  52. "license": "MIT",
  53. "jshintConfig": {
  54. "eqeqeq": true,
  55. "freeze": true,
  56. "latedef": "nofunc",
  57. "noarg": true,
  58. "nonbsp": true,
  59. "quotmark": "double",
  60. "undef": true,
  61. "unused": true,
  62. "trailing": true,
  63. "eqnull": true,
  64. "proto": true,
  65. "smarttabs": true,
  66. "node": true,
  67. "globals": {
  68. "describe": true,
  69. "it": true
  70. }
  71. }
  72. }