package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "parse5",
  3. "description": "HTML parsing/serialization toolset for Node.js. WHATWG HTML Living Standard (aka HTML5)-compliant.",
  4. "version": "4.0.0",
  5. "author": "Ivan Nikulin <ifaaan@gmail.com> (https://github.com/inikulin)",
  6. "contributors": "https://github.com/inikulin/parse5/graphs/contributors",
  7. "homepage": "https://github.com/inikulin/parse5",
  8. "devDependencies": {
  9. "@types/node": "*",
  10. "del": "^2.0.2",
  11. "gulp": "^3.9.0",
  12. "gulp-benchmark": "^1.1.1",
  13. "gulp-download": "0.0.1",
  14. "gulp-eslint": "^3.0.1",
  15. "gulp-install": "^0.6.0",
  16. "gulp-mocha": "^2.1.3",
  17. "gulp-rename": "^1.2.2",
  18. "gulp-typedoc": "^2.0.0",
  19. "gulp-typescript": "^3.1.2",
  20. "publish-please": "^2.2.0",
  21. "through2": "^2.0.0",
  22. "typedoc": "^0.5.1",
  23. "typescript": "^2.0.6"
  24. },
  25. "keywords": [
  26. "html",
  27. "parser",
  28. "html5",
  29. "WHATWG",
  30. "specification",
  31. "fast",
  32. "html parser",
  33. "html5 parser",
  34. "htmlparser",
  35. "parse5",
  36. "serializer",
  37. "html serializer",
  38. "htmlserializer",
  39. "sax",
  40. "simple api",
  41. "parse",
  42. "tokenize",
  43. "serialize",
  44. "tokenizer"
  45. ],
  46. "license": "MIT",
  47. "main": "./lib/index.js",
  48. "repository": {
  49. "type": "git",
  50. "url": "git://github.com/inikulin/parse5.git"
  51. },
  52. "scripts": {
  53. "test": "gulp test",
  54. "publish-please": "publish-please",
  55. "prepublish": "publish-please guard"
  56. },
  57. "files": [
  58. "lib"
  59. ]
  60. }