{
  "name": "schematron-runner",
  "version": "1.0.0",
  "description": "A javascript implementation of schematron testing for XML documents. This specifically resolves a need for a package that allows a quick, reliable install for validating HL7 clinical documents, such as C-CDA.",
  "main": "./cjs/schematron-runner.js",
  "module": "./esm/schematron-runner.js",
  "types": "./esm/schematron-runner.d.ts",
  "scripts": {
    "build": "npm run build-cjs && npm run build-esnext",
    "build-cjs": "tsc -p tsconfig.json",
    "build-esnext": "tsc -p tsconfig.json --module esnext --outDir esm",
    "ci": "npm run build-cjs && npm run test",
    "coverage": "nyc report --reporter=text-lcov | npx coveralls",
    "report": "nyc report --reporter=html",
    "test": "nyc ava"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/TimLuq/schematron-runner.git"
  },
  "author": {
    "name": "Tim Lundqvist",
    "url": "https://github.com/TimLuq"
  },
  "contributors": [
    { "name": "Eric Wadkins" }
  ],
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/TimLuq/schematron-runner/issues"
  },
  "homepage": "https://github.com/TimLuq/schematron-runner#readme",
  "devDependencies": {
    "@babel/core": "^7.2.0",
    "@babel/plugin-proposal-class-properties": "^7.2.0",
    "@babel/plugin-syntax-dynamic-import": "^7.2.0",
    "@babel/preset-env": "^7.2.0",
    "@babel/preset-typescript": "^7.1.0",
    "@types/node": "^10.12.15",
    "@types/node-fetch": "^2.1.4",
    "@types/xmldom": "^0.1.29",
    "ava": "^1.0.1",
    "nyc": "^13.1.0",
    "typescript": "^3.2.2"
  },
  "dependencies": {
    "node-fetch": "^2.0.0",
    "xmldom": "^0.1.20",
    "xpath": "^0.0.27"
  }
}
