{
  "name": "@adobe/htlengine",
  "version": "4.2.0",
  "description": "Javascript Based HTL (Sightly) parser",
  "main": "src/index.js",
  "license": "Apache-2.0",
  "repository": "https://github.com/adobe/htlengine",
  "engines": {
    "node": ">=10.13 <11.0 || >=12.11.1 <13.0"
  },
  "scripts": {
    "build": "antlr -Dlanguage=JavaScript -Xexact-output-dir -o src/parser/generated src/parser/grammar/SightlyLexer.g4 src/parser/grammar/SightlyParser.g4 src/parser/grammar/SightlyParser.g4",
    "semantic-release": "semantic-release",
    "start": "node src/run.js",
    "test": "nyc --reporter=text --reporter=lcov --check-coverage --branches 68 --statements 82 --lines 82 mocha",
    "test-ci": "npm run lint && npm run test && codecov",
    "lint": "./node_modules/.bin/eslint ."
  },
  "dependencies": {
    "antlr4": "^4.7.2",
    "fs-extra": "^8.0.0",
    "he": "^1.2.0",
    "lodash": "^4.17.15",
    "moment": "^2.24.0",
    "node-esapi": "0.0.1",
    "numeral": "^2.0.6",
    "rehype-parse": "^6.0.1",
    "sanitizer": "^0.1.3",
    "source-map": "^0.7.3",
    "unified": "^8.0.0",
    "urijs": "^1.19.1",
    "xregexp": "^4.2.4"
  },
  "devDependencies": {
    "@semantic-release/changelog": "5.0.0",
    "@semantic-release/git": "9.0.0",
    "@semantic-release/github": "7.0.4",
    "codecov": "3.6.5",
    "eslint": "6.8.0",
    "eslint-config-airbnb-base": "14.0.0",
    "eslint-plugin-header": "3.0.0",
    "eslint-plugin-import": "2.20.1",
    "ghooks": "2.0.4",
    "jsdom": "16.2.0",
    "lint-staged": "10.0.7",
    "mocha": "7.0.1",
    "mocha-junit-reporter": "1.23.3",
    "nyc": "15.0.0",
    "rehype-stringify": "6.0.1",
    "remark-parse": "7.0.2",
    "remark-rehype": "5.0.0",
    "semantic-release": "17.0.4"
  },
  "lint-staged": {
    "*.js": "eslint"
  },
  "config": {
    "ghooks": {
      "pre-commit": "npx lint-staged"
    }
  }
}
