{ "name": "xml-utils", "version": "1.7.0", "description": "Parse XML without Blowing Up Your Bundle Size", "main": "index.js", "module": "index.mjs", "types": "index.d.ts", "exports": { ".": { "require": "./index.js", "import": "./index.mjs" }, "./index": { "require": "./index.js", "import": "./index.mjs" }, "./index.js": "./index.js", "./index.mjs": "./index.mjs", "./find-tag-by-name": "./find-tag-by-name.js", "./find-tag-by-name.js": "./find-tag-by-name.js", "./find-tag-by-path": "./find-tag-by-path.js", "./find-tag-by-path.js": "./find-tag-by-path.js", "./find-tags-by-name": "./find-tags-by-name.js", "./find-tags-by-name.js": "./find-tags-by-name.js", "./find-tags-by-path": "./find-tags-by-path.js", "./find-tags-by-path.js": "./find-tags-by-path.js", "./get-attribute": "./get-attribute.js", "./get-attribute.js": "./get-attribute.js", "./remove-comments": "./remove-comments.js", "./remove-comments.js": "./remove-comments.js", "./remove-tags-by-name": "./remove-tags-by-name", "./remove-tags-by-name.js": "./remove-tags-by-name.js" }, "files": [ "index.d.ts", "index.js", "index.mjs", "count-substring.js", "find-tag-by-name.js", "find-tag-by-path.js", "find-tags-by-name.js", "find-tags-by-path.js", "get-attribute.js", "index-of-match.js", "index-of-match-end.js", "remove-comments.js", "remove-tags-by-name.js" ], "scripts": { "f": "npm run format", "format": "npx prettier --arrow-parens=avoid --print-width=140 --trailing-comma=none --write *.js */*.js */*.mjs */*.ts", "setup": "cd test/data && bash setup.sh", "test": "npm run test:js && npm run test:ts && npm run test:tsc && npm run test:esm", "test:js": "node ./test/test.js", "test:esm": "node ./test/test.mjs", "test:ts": "npx ts-node ./test/test.ts", "test:tsc": "tsc --noEmit ./test/test.ts" }, "repository": { "type": "git", "url": "git+https://github.com/DanielJDufour/xml-utils.git" }, "keywords": [ "fast", "mrf", "xml", "tag", "lite", "utils", "parse" ], "author": "Daniel J. Dufour", "license": "CC0-1.0", "bugs": { "url": "https://github.com/DanielJDufour/xml-utils/issues" }, "homepage": "https://github.com/DanielJDufour/xml-utils#readme", "devDependencies": { "flug": "^2.6.0", "typescript": "^5.0.4" } }