package.json 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. {
  2. "name": "fast-xml-parser",
  3. "version": "4.5.0",
  4. "description": "Validate XML, Parse XML, Build XML without C/C++ based libraries",
  5. "main": "./src/fxp.js",
  6. "scripts": {
  7. "test": "nyc --reporter=lcov --reporter=text jasmine spec/*spec.js",
  8. "test-types": "tsc --noEmit spec/typings/typings-test.ts",
  9. "unit": "jasmine",
  10. "coverage": "nyc report --reporter html --reporter text -t .nyc_output --report-dir .nyc_output/summary",
  11. "perf": "node ./benchmark/perfTest3.js",
  12. "lint": "eslint src/*.js spec/*.js",
  13. "bundle": "webpack --config webpack-prod.config.js",
  14. "prettier": "prettier --write src/**/*.js",
  15. "publish-please": "publish-please",
  16. "checkReadiness": "publish-please --dry-run"
  17. },
  18. "bin": {
  19. "fxparser": "./src/cli/cli.js"
  20. },
  21. "repository": {
  22. "type": "git",
  23. "url": "https://github.com/NaturalIntelligence/fast-xml-parser"
  24. },
  25. "keywords": [
  26. "fast",
  27. "xml",
  28. "json",
  29. "parser",
  30. "xml2js",
  31. "x2js",
  32. "xml2json",
  33. "js",
  34. "cli",
  35. "validator",
  36. "validate",
  37. "transformer",
  38. "assert",
  39. "js2xml",
  40. "json2xml",
  41. "html"
  42. ],
  43. "author": "Amit Gupta (https://solothought.com)",
  44. "license": "MIT",
  45. "devDependencies": {
  46. "@babel/core": "^7.13.10",
  47. "@babel/plugin-transform-runtime": "^7.13.10",
  48. "@babel/preset-env": "^7.13.10",
  49. "@babel/register": "^7.13.8",
  50. "@types/node": "20",
  51. "babel-loader": "^8.2.2",
  52. "eslint": "^8.3.0",
  53. "he": "^1.2.0",
  54. "jasmine": "^3.6.4",
  55. "nyc": "^15.1.0",
  56. "prettier": "^1.19.1",
  57. "publish-please": "^5.5.2",
  58. "typescript": "5",
  59. "webpack": "^5.64.4",
  60. "webpack-cli": "^4.9.1"
  61. },
  62. "typings": "src/fxp.d.ts",
  63. "funding": [{
  64. "type": "github",
  65. "url": "https://github.com/sponsors/NaturalIntelligence"
  66. },{
  67. "type": "paypal",
  68. "url": "https://paypal.me/naturalintelligence"
  69. }],
  70. "dependencies": {
  71. "strnum": "^1.0.5"
  72. }
  73. }