package.json 806 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "xmldoc",
  3. "description": "A lightweight XML Document class for JavaScript.",
  4. "author": {
  5. "name": "Nick Farina",
  6. "email": "nfarina@gmail.com",
  7. "url": "http://nfarina.com"
  8. },
  9. "version": "1.2.0",
  10. "main": "./index",
  11. "scripts": {
  12. "test": "tap test/*.js",
  13. "coverage": "npm test -- --cov --coverage-report=html"
  14. },
  15. "license": "MIT",
  16. "repository": {
  17. "type": "git",
  18. "url": "git://github.com/nfarina/xmldoc.git"
  19. },
  20. "contributors": [
  21. {
  22. "name": "Nick Farina",
  23. "email": "nfarina@gmail.com"
  24. },
  25. {
  26. "name": "Caleb Meredith",
  27. "email": "calebmeredith8@gmail.com"
  28. }
  29. ],
  30. "readmeFilename": "README.md",
  31. "devDependencies": {
  32. "prettier": "^2.7.1",
  33. "tap": "^16.3.0"
  34. },
  35. "dependencies": {
  36. "sax": "^1.2.4"
  37. }
  38. }