UNPKG

saxen

Version:

A tiny, super fast, namespace aware sax-style XML parser written in plain JavaScript

64 lines (63 loc) 1.45 kB
{ "name": "saxen", "description": "A tiny, super fast, namespace aware sax-style XML parser written in plain JavaScript", "scripts": { "all": "run-s lint test-coverage test-perf", "lint": "eslint . --ext js,cjs", "pretest": "run-s bundle", "bundle": "rollup -c --bundleConfigAsCjs", "test": "mocha test/*.js", "test-coverage": "NO_PERF=1 nyc --reporter=lcov --reporter=html npm test", "test-perf": "node test/perf/index.cjs", "prepare": "run-s bundle" }, "type": "module", "exports": { ".": { "import": "./dist/index.js", "require": "./dist/index.cjs" }, "./package.json": "./package.json" }, "keywords": [ "xml", "sax", "parser", "pure" ], "version": "10.0.0", "bugs": { "url": "https://github.com/nikku/saxen/issues" }, "engines": { "node": ">= 18" }, "author": { "name": "Nico Rehwaldt", "url": "https://github.com/nikku" }, "contributors": [ { "name": "Vopilovskiy Konstantin", "email": "flash.vkv@gmail.com", "url": "http://vflash.ru" } ], "license": "MIT", "repository": { "type": "git", "url": "https://github.com/nikku/saxen" }, "devDependencies": { "eslint": "^8.57.0", "eslint-plugin-bpmn-io": "^1.0.0", "mocha": "^10.3.0", "npm-run-all": "^4.1.1", "nyc": "^15.1.0", "rollup": "^4.12.0", "table": "^6.8.1" }, "files": [ "dist" ] }