xml-helper-ts
Version:
A TypeScript library for XML parsing, validation with XSD schema, and XML/JSON conversion - built from scratch without external dependencies
56 lines (55 loc) • 1.33 kB
JSON
{
"name": "xml-helper-ts",
"version": "1.0.7",
"description": "A TypeScript library for XML parsing, validation with XSD schema, and XML/JSON conversion - built from scratch without external dependencies",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"test": "node dist/test.js",
"examples": "node dist/examples.js",
"clean": "rmdir /s /q dist 2>nul || true",
"prepare": "npm run clean && npm run build",
"prepublishOnly": "npm run test"
},
"keywords": [
"xml",
"xsd",
"parser",
"validator",
"json",
"typescript",
"schema",
"xml-to-json",
"json-to-xml",
"validation"
],
"author": {
"name": "Rodrigo Weber Sesterheim",
"email": "rodrigows09@gmail.com",
"url": "https://github.com/RodrigoSester"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/RodrigoSester/xml-helper-ts.git"
},
"bugs": {
"url": "https://github.com/RodrigoSester/xml-helper-ts/issues"
},
"homepage": "https://github.com/RodrigoSester/xml-helper-ts#readme",
"engines": {
"node": ">=14.0.0"
},
"devDependencies": {
"typescript": "^5.0.0"
},
"publishConfig": {
"access": "public"
}
}