package.json 971 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "posthtml-render",
  3. "version": "1.4.0",
  4. "description": "Renders PostHTML Tree to HTML/XML",
  5. "license": "MIT",
  6. "repository": "posthtml/posthtml-render",
  7. "author": "Ivan Voischev <voischev.ivan@ya.ru>",
  8. "main": "lib/index.js",
  9. "engines": {
  10. "node": ">=10"
  11. },
  12. "scripts": {
  13. "version": "conventional-changelog -i changelog.md -s -r 0 && git add changelog.md",
  14. "test": "c8 mocha",
  15. "docs": "jsdoc2md lib/*.js > render.md",
  16. "pretest": "clinton"
  17. },
  18. "files": [
  19. "lib"
  20. ],
  21. "keywords": [
  22. "posthtml",
  23. "render",
  24. "html",
  25. "xml"
  26. ],
  27. "devDependencies": {
  28. "@commitlint/cli": "^11.0.0",
  29. "@commitlint/config-angular": "^11.0.0",
  30. "c8": "^7.3.5",
  31. "chai": "^4.2.0",
  32. "clinton": "^0.14.0",
  33. "conventional-changelog-cli": "^2.1.1",
  34. "husky": "^4.3.0",
  35. "jsdoc-to-markdown": "^6.0.1",
  36. "lint-staged": "^10.5.1",
  37. "mocha": "^8.2.1",
  38. "xo": "^0.34.2"
  39. },
  40. "types": "lib/index.d.ts"
  41. }