xml-disassembler
Version:
Disassemble XML files into smaller, more manageable files and reassemble the XML when needed.
82 lines (81 loc) • 1.94 kB
JSON
{
"name": "xml-disassembler",
"version": "1.10.18",
"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": "^29.5.14",
"@types/node": "^24.0.10",
"eslint": "^9.30.1",
"eslint-config-prettier": "^10.1.2",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^16.1.2",
"prettier": "3.6.2",
"rollup": "^4.44.1",
"ts-jest": "^29.4.0",
"typescript": "^5.8.2"
},
"dependencies": {
"fast-xml-parser": "^5.2.5",
"ignore": "^7.0.4",
"ini": "^5.0.0",
"json5": "^2.2.3",
"log4js": "^6.9.1",
"smol-toml": "^1.3.4",
"tslib": "^2.6.2",
"yaml": "^2.8.0"
},
"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"
]
}