package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "saxes",
  3. "description": "An evented streaming XML parser in JavaScript",
  4. "author": "Louis-Dominique Dubeau <ldd@lddubeau.com>",
  5. "version": "3.1.11",
  6. "main": "lib/saxes.js",
  7. "types": "lib/saxes.d.ts",
  8. "license": "ISC",
  9. "engines": {
  10. "node": ">=8"
  11. },
  12. "scripts": {
  13. "test": "mocha --delay",
  14. "posttest": "eslint test/*.js lib/*.js",
  15. "preversion": "npm test",
  16. "version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
  17. "postversion": "npm publish",
  18. "postpublish": "git push origin --follow-tags"
  19. },
  20. "repository": "https://github.com/lddubeau/saxes.git",
  21. "files": [
  22. "lib/saxes.js",
  23. "lib/saxes.d.ts",
  24. "LICENSE",
  25. "README.md",
  26. "CHANGELOG.md"
  27. ],
  28. "devDependencies": {
  29. "@commitlint/cli": "^8.0.0",
  30. "@commitlint/config-angular": "^8.0.0",
  31. "chai": "^4.2.0",
  32. "conventional-changelog-cli": "^2.0.21",
  33. "eslint": "^5.16.0",
  34. "eslint-config-lddubeau-base": "^3.0.5",
  35. "husky": "^2.5.0",
  36. "mocha": "^6.1.4",
  37. "renovate-config-lddubeau": "^1.0.0",
  38. "xml-conformance-suite": "^1.2.0"
  39. },
  40. "dependencies": {
  41. "xmlchars": "^2.1.1"
  42. },
  43. "husky": {
  44. "hooks": {
  45. "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
  46. }
  47. }
  48. }