{
  "name": "xmlparsing",
  "version": "1.0.7",
  "description": "xml parsing",
  "main": "./build/index.js",
  "scripts": {
    "test": "nyc --reporter=text mocha --require ts-node/register ./test/**/*.ts",
    "test:report": "nyc mocha --require ts-node/register ./test/**/*.ts",
    "doc": "typedoc --theme minimal --out docs ./src"
  },
  "author": "zsk526",
  "keywords": [
    "xmlparser",
    "parser",
    "xml",
    "ast",
    "generator"
  ],
  "files": [
    "build/**/*.js"
  ],
  "repository": {
    "type": "git",
    "url": "git@github.com:zhengsk/xmlparsing.git"
  },
  "license": "ISC",
  "husky": {
    "hooks": {
      "pre-commit": "npm test"
    }
  },
  "nyc": {
    "include": [
      "src/**/*.ts"
    ],
    "exclude": [
      "test/**/*.test.ts"
    ],
    "extension": [
      ".ts"
    ],
    "require": [
      "ts-node/register"
    ],
    "reporter": [
      "text",
      "html"
    ],
    "sourceMap": true,
    "instrument": true
  },
  "devDependencies": {
    "@types/chai": "^4.1.7",
    "@types/mocha": "^5.2.6",
    "@types/node": "^11.12.2",
    "chai": "^4.2.0",
    "husky": "^1.3.1",
    "mocha": "^6.1.4",
    "nyc": "^14.1.0",
    "ts-node": "^8.0.3",
    "tslint": "^5.15.0",
    "tslint-config-prettier": "^1.18.0",
    "tslint-config-standard": "^8.0.1",
    "typedoc": "^0.14.2",
    "typescript": "^3.4.1"
  }
}
