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.8.0",
"description": "Disassemble XML files into smaller, more manageable files and reassemble the XML when needed.",
"author": "Matt Carvin",
"license": "ISC",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"umd:main": "dist/index.umd.js",
"types": "dist/typings/index.d.ts",
"engines": {
"node": ">=18",
"pnpm": ">=8"
},
"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.2",
"@types/fs-extra": "^11.0.4",
"@types/ini": "^4.1.1",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.17",
"eslint": "^9.23.0",
"eslint-config-prettier": "^10.1.1",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.5.0",
"prettier": "3.5.3",
"rollup": "^4.38.0",
"ts-jest": "^29.3.1",
"typescript": "^5.8.2"
},
"dependencies": {
"fast-xml-parser": "^5.2.0",
"ignore": "^7.0.3",
"ini": "^5.0.0",
"json5": "^2.2.3",
"log4js": "^6.9.1",
"smol-toml": "^1.3.1",
"tslib": "^2.6.2",
"yaml": "^2.7.1"
},
"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"
]
}