UNPKG

to-xml

Version:

toXML - Pure JavaScript XML Writer

69 lines (68 loc) 1.4 kB
{ "name": "to-xml", "description": "toXML - Pure JavaScript XML Writer", "version": "0.1.11", "author": "Yusuke Kawasaki <u-suke@kawa.net>", "bin": { "json2xml": "./bin/json2xml.cli.js" }, "bugs": { "url": "https://github.com/kawanet/to-xml/issues" }, "devDependencies": { "chai": "^4.3.7", "jshint": "^2.13.6", "mocha": "^10.2.0", "terser": "^5.19.2" }, "exports": { ".": { "require": "./to-xml.js", "import": { "types": "./to-xml.d.ts", "default": "./dist/to-xml.mjs" } } }, "files": [ "*.d.ts", "*.js", "LICENSE", "README.md", "bin/*.js", "dist/*.min.js", "dist/*.mjs", "package.json" ], "homepage": "https://github.com/kawanet/to-xml#readme", "jshintConfig": { "esversion": 6, "node": true, "undef": true, "unused": true }, "keywords": [ "json", "serialize", "stringify", "writer", "xml" ], "license": "MIT", "main": "./to-xml.js", "module": "./dist/to-xml.mjs", "repository": { "type": "git", "url": "git+https://github.com/kawanet/to-xml.git" }, "scripts": { "build": "make", "clean": "make clean", "fixpack": "fixpack", "prepack": "make clean all test", "test": "make test", "test-browser": "make && open test/test.html" }, "type": "commonjs", "types": "to-xml.d.ts" }