xml-disassembler
Version:
Disassemble XML files into smaller, more manageable files and reassemble the XML when needed.
82 lines (81 loc) • 1.93 kB
JSON
{
"name": "xml-disassembler",
"version": "1.11.3",
"description": "Disassemble XML files into smaller, more manageable files and reassemble the XML when needed.",
"author": "Matt Carvin",
"license": "MIT",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"umd:main": "dist/index.umd.js",
"types": "dist/typings/index.d.ts",
"engines": {
"node": ">=20",
"pnpm": ">=9"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "rollup -c",
"start": "node dist/index.cjs",
"test": "jest --coverage",
"release": "semantic-release",
"lint": "eslint .",
"format": "prettier --write \"**/*.{js,ts}\"",
"prepare": "husky install"
},
"lint-staged": {
"**/*": "prettier --write \"**/*.{js,ts}\" --ignore-unknown"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.4",
"@types/fs-extra": "^11.0.4",
"@types/ini": "^4.1.1",
"@types/jest": "^30.0.0",
"@types/node": "^24.6.1",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.2",
"husky": "^9.1.7",
"jest": "^30.2.0",
"lint-staged": "^16.1.2",
"prettier": "3.6.2",
"rollup": "^4.44.1",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3"
},
"dependencies": {
"fast-xml-parser": "^5.3.2",
"ignore": "^7.0.4",
"ini": "^5.0.0",
"json5": "^2.2.3",
"log4js": "^6.9.1",
"smol-toml": "^1.4.2",
"tslib": "^2.6.2",
"yaml": "^2.8.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mcarvin8/xml-disassembler.git"
},
"bugs": {
"url": "https://github.com/mcarvin8/xml-disassembler/issues"
},
"keywords": [
"xml",
"transform",
"transformers",
"disassemble",
"disassembly",
"json",
"json5",
"yaml",
"xml2json",
"xml2yaml",
"xml2json5",
"toml",
"xml2toml",
"ini",
"xml2ini"
]
}