UNPKG

xml-class-transformer

Version:

Fluently parse XML into beautiful JS/TS classes and serialize them. GoLang's encoding/xml alternative for JS/TS world.

73 lines (72 loc) 2.08 kB
{ "name": "xml-class-transformer", "version": "0.1.1", "description": "Fluently parse XML into beautiful JS/TS classes and serialize them. GoLang's encoding/xml alternative for JS/TS world.", "cdn": "dist/index.umd.js", "main": "dist/index.js", "types": "types/index.d.ts", "unpkg": "dist/index.umd.js", "module": "dist/index.esm.js", "jsdelivr": "dist/index.umd.js", "umd:main": "dist/index.umd.js", "exports": { ".": [ { "import": "./dist/index.mjs", "require": "./dist/index.cjs", "default": "./dist/index.js" }, "./dist/index.js" ] }, "devDependencies": { "@types/chai": "^4.3.4", "@types/eslint": "^8.4.10", "@types/jest": "^29.2.4", "@types/prettier": "^2.7.2", "@typescript-eslint/eslint-plugin": "^5.47.0", "@typescript-eslint/parser": "^5.47.0", "chai": "^4.3.7", "eslint": "^8.30.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-prettier": "^4.2.1", "jest": "^29.3.1", "prettier": "^2.8.1", "rollup": "^2.79.1", "rollup-plugin-terser": "^7.0.2", "rollup-plugin-typescript2": "^0.34.1", "ts-jest": "^29.0.3", "ts-jest-resolver": "^2.0.0", "typedoc": "^0.23.23", "typedoc-plugin-markdown": "^3.14.0", "typescript": "^4.9.4" }, "scripts": { "doc": "typedoc src/index.ts", "test": "jest", "lint": "eslint \"*/**/*.{ts,js,json}\"", "lint:fix": "eslint \"*/**/*.{ts,js,json}\" --fix", "build": "rollup --config ./rollup.config.mjs", "prepublishOnly": "npm run doc && npm run lint && npm run test && npm run build" }, "files": [ "dist/", "types/" ], "repository": { "type": "git", "url": "git+https://github.com/Edgar-P-Yan/xml-class-transformer.git" }, "keywords": [], "author": { "name": "Edgar Pogosyan" }, "license": "MIT", "bugs": { "url": "https://github.com/Edgar-P-Yan/xml-class-transformer/issues" }, "homepage": "https://github.com/Edgar-P-Yan/xml-class-transformer#readme", "dependencies": { "xml-js": "^1.6.11" } }