package.json 1.23 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
{
  "name": "saxes",
  "description": "An evented streaming XML parser in JavaScript",
  "author": "Louis-Dominique Dubeau <ldd@lddubeau.com>",
  "version": "3.1.11",
  "main": "lib/saxes.js",
  "types": "lib/saxes.d.ts",
  "license": "ISC",
  "engines": {
    "node": ">=8"
  },
  "scripts": {
    "test": "mocha --delay",
    "posttest": "eslint test/*.js lib/*.js",
    "preversion": "npm test",
    "version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
    "postversion": "npm publish",
    "postpublish": "git push origin --follow-tags"
  },
  "repository": "https://github.com/lddubeau/saxes.git",
  "files": [
    "lib/saxes.js",
    "lib/saxes.d.ts",
    "LICENSE",
    "README.md",
    "CHANGELOG.md"
  ],
  "devDependencies": {
    "@commitlint/cli": "^8.0.0",
    "@commitlint/config-angular": "^8.0.0",
    "chai": "^4.2.0",
    "conventional-changelog-cli": "^2.0.21",
    "eslint": "^5.16.0",
    "eslint-config-lddubeau-base": "^3.0.5",
    "husky": "^2.5.0",
    "mocha": "^6.1.4",
    "renovate-config-lddubeau": "^1.0.0",
    "xml-conformance-suite": "^1.2.0"
  },
  "dependencies": {
    "xmlchars": "^2.1.1"
  },
  "husky": {
    "hooks": {
      "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
    }
  }
}