package.json 655 B

12345678910111213141516171819202122232425
  1. {
  2. "name": "sax",
  3. "description": "An evented streaming XML parser in JavaScript",
  4. "author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)",
  5. "version": "1.2.4",
  6. "main": "lib/sax.js",
  7. "license": "ISC",
  8. "scripts": {
  9. "test": "tap test/*.js --cov -j4",
  10. "posttest": "standard -F test/*.js lib/*.js",
  11. "preversion": "npm test",
  12. "postversion": "npm publish",
  13. "postpublish": "git push origin --all; git push origin --tags"
  14. },
  15. "repository": "git://github.com/isaacs/sax-js.git",
  16. "files": [
  17. "lib/sax.js",
  18. "LICENSE",
  19. "README.md"
  20. ],
  21. "devDependencies": {
  22. "standard": "^8.6.0",
  23. "tap": "^10.5.1"
  24. }
  25. }