xml-parser.ts
Version:
A lightweight, zero-dependency XML parser for TypeScript/JavaScript that converts XML strings to JavaScript objects and vice versa.
57 lines (56 loc) • 1.44 kB
JSON
{
"name": "xml-parser.ts",
"version": "1.0.0",
"type": "commonjs",
"description": "A lightweight, zero-dependency XML parser for TypeScript/JavaScript that converts XML strings to JavaScript objects and vice versa.",
"keywords": [
"xml",
"parser",
"json",
"converter",
"xml-to-json",
"json-to-xml",
"bidirectional",
"typescript",
"javascript",
"xml-parser",
"zero-dependency",
"lightweight",
"isomorphic",
"node",
"browser"
],
"author": {
"name": "Beeno Tung",
"email": "aabbcc1241@yahoo.com.hk",
"url": "https://beeno-tung.surge.sh"
},
"license": "BSD-2-Clause",
"repository": {
"type": "git",
"url": "git+https://github.com/beenotung/xml-parser.ts.git"
},
"homepage": "https://github.com/beenotung/xml-parser.ts#readme",
"bugs": {
"url": "https://github.com/beenotung/xml-parser.ts/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "ts-node test/all.ts",
"clean": "rimraf dist",
"build": "rimraf dist && tsc -p . && rimraf dist/tsconfig.tsbuildinfo dist/*.test.d.ts dist/*.test.js dist/*.spec.d.ts dist/*.spec.js",
"tsc": "tsc -p ."
},
"devDependencies": {
"@types/node": "^24.1.0",
"fast-xml-parser": "^5.2.5",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.8.3"
}
}