package.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. {
  2. "name": "path-expression-matcher",
  3. "version": "1.5.0",
  4. "description": "Efficient path tracking and pattern matching for XML/JSON parsers",
  5. "main": "./lib/pem.cjs",
  6. "type": "module",
  7. "sideEffects": false,
  8. "module": "./src/index.js",
  9. "types": "./src/index.d.ts",
  10. "exports": {
  11. ".": {
  12. "import": {
  13. "types": "./src/index.d.ts",
  14. "default": "./src/index.js"
  15. },
  16. "require": {
  17. "types": "./lib/pem.d.cts",
  18. "default": "./lib/pem.cjs"
  19. }
  20. }
  21. },
  22. "scripts": {
  23. "test": "c8 --reporter=lcov --reporter=text node test/*test.js",
  24. "bundle": "webpack --config webpack.cjs.config.js"
  25. },
  26. "keywords": [
  27. "xml",
  28. "json",
  29. "yaml",
  30. "path",
  31. "matcher",
  32. "pattern",
  33. "xpath",
  34. "selector",
  35. "parser",
  36. "fast-xml-parser",
  37. "fast-xml-builder"
  38. ],
  39. "author": "Amit Gupta (https://solothought.com)",
  40. "license": "MIT",
  41. "repository": {
  42. "type": "git",
  43. "url": "https://github.com/NaturalIntelligence/path-expression-matcher"
  44. },
  45. "bugs": {
  46. "url": "https://github.com/NaturalIntelligence/path-expression-matcher/issues"
  47. },
  48. "homepage": "https://github.com/NaturalIntelligence/path-expression-matcher#readme",
  49. "engines": {
  50. "node": ">=14.0.0"
  51. },
  52. "files": [
  53. "lib",
  54. "src/",
  55. "README.md",
  56. "LICENSE"
  57. ],
  58. "devDependencies": {
  59. "@babel/core": "^7.13.10",
  60. "@babel/plugin-transform-runtime": "^7.13.10",
  61. "@babel/preset-env": "^7.13.10",
  62. "@babel/register": "^7.13.8",
  63. "@types/node": "20",
  64. "babel-loader": "^8.2.2",
  65. "c8": "^10.1.3",
  66. "eslint": "^8.3.0",
  67. "prettier": "^3.5.1",
  68. "typescript": "5",
  69. "webpack": "^5.64.4",
  70. "webpack-cli": "^4.9.1"
  71. },
  72. "funding": [
  73. {
  74. "type": "github",
  75. "url": "https://github.com/sponsors/NaturalIntelligence"
  76. }
  77. ]
  78. }