package.json 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. {
  2. "name": "@xmldom/xmldom",
  3. "version": "0.9.8",
  4. "description": "A pure JavaScript W3C standard-based (XML DOM Level 2 Core) DOMParser and XMLSerializer module.",
  5. "keywords": [
  6. "w3c",
  7. "dom",
  8. "xml",
  9. "parser",
  10. "javascript",
  11. "DOMParser",
  12. "XMLSerializer",
  13. "ponyfill"
  14. ],
  15. "homepage": "https://github.com/xmldom/xmldom",
  16. "repository": {
  17. "type": "git",
  18. "url": "git://github.com/xmldom/xmldom.git"
  19. },
  20. "main": "lib/index.js",
  21. "types": "index.d.ts",
  22. "files": [
  23. "CHANGELOG.md",
  24. "LICENSE",
  25. "readme.md",
  26. "SECURITY.md",
  27. "index.d.ts",
  28. "lib"
  29. ],
  30. "scripts": {
  31. "lint": "eslint examples lib test",
  32. "format": "prettier --write examples lib test index.d.ts",
  33. "changelog": "auto-changelog --unreleased-only",
  34. "start": "nodemon --watch package.json --watch lib --watch test --exec 'npm --silent run test && npm --silent run lint'",
  35. "test": "jest",
  36. "fuzz": "jest --config=./jest.fuzz.config.js",
  37. "test:types": "cd examples/typescript-node-es6 && ./pretest.sh 3 && ./pretest.sh 4 && ./pretest.sh 5 && node dist/index.js",
  38. "testrelease": "npm test && eslint lib",
  39. "version": "./changelog-has-version.sh",
  40. "release": "np --no-yarn --test-script testrelease"
  41. },
  42. "engines": {
  43. "node": ">=14.6"
  44. },
  45. "devDependencies": {
  46. "@homer0/prettier-plugin-jsdoc": "9.1.0",
  47. "auto-changelog": "2.5.0",
  48. "eslint": "8.57.1",
  49. "eslint-config-prettier": "10.0.1",
  50. "eslint-plugin-anti-trojan-source": "1.1.1",
  51. "eslint-plugin-es5": "1.5.0",
  52. "eslint-plugin-n": "17.15.1",
  53. "eslint-plugin-prettier": "5.2.3",
  54. "get-stream": "6.0.1",
  55. "jest": "29.7.0",
  56. "nodemon": "3.1.9",
  57. "np": "8.0.4",
  58. "prettier": "3.5.2",
  59. "xmltest": "2.0.3",
  60. "yauzl": "3.2.0"
  61. },
  62. "bugs": {
  63. "url": "https://github.com/xmldom/xmldom/issues"
  64. },
  65. "license": "MIT",
  66. "auto-changelog": {
  67. "prepend": true,
  68. "remote": "origin",
  69. "tagPrefix": "",
  70. "template": "./auto-changelog.hbs"
  71. },
  72. "packageManager": "npm@11.1.0+sha512.acf301ad9b9ddba948fcb72341e2f0fcae477f56a95cc2a092934d133a7461062633cefbf93d5934a3dc0768674e2edee9f04dcfcc4bb4c327ff0e3a7d552a1b"
  73. }