{
  "name": "regexp-to-ast",
  "version": "0.5.0",
  "main": "lib/regexp-to-ast.js",
  "repository": "https://github.com/bd82/regexp-to-ast.git",
  "author": "Shahar Soel",
  "license": "MIT",
  "description": "Parses a Regular Expression and outputs an AST",
  "keywords": [
    "regExp",
    "parser",
    "regular expression"
  ],
  "dependencies": {},
  "devDependencies": {
    "chai": "^4.2.0",
    "coveralls": "^3.0.9",
    "eslint": "^6.7.2",
    "eslint-config-airbnb-base": "^14.0.0",
    "eslint-config-prettier": "^6.7.0",
    "eslint-plugin-es5": "^1.4.1",
    "gitty": "^3.7.0",
    "jsonfile": "^5.0.0",
    "lodash": "latest",
    "mocha": "^6.2.2",
    "npm-run-all": "^4.1.5",
    "nyc": "^14.1.1",
    "prettier": "1.19.1",
    "semver": "^6.3.0",
    "typescript": "^3.7.3"
  },
  "scripts": {
    "release": "git fetch && git rebase && node scripts/release.js",
    "ci_full_flow": "npm-run-all type_check test check_coverage verify_format",
    "test": "nyc mocha \"./test/**/*spec.js\"",
    "check_coverage": "nyc check-coverage --lines 100 --statements 100 --functions 100",
    "report_coverage": "cat coverage/lcov.info | node_modules/.bin/coveralls",
    "format": "prettier --no-editorconfig --write \"**/*.@(ts|js|md)\"",
    "verify_format": "prettier --no-editorconfig --list-different  \"**/*.@(ts|js)\"",
    "type_check": "tsc"
  },
  "typings": "api.d.ts",
  "files": [
    "lib",
    "LICENSE",
    "CHANGELOG.md",
    "README.md",
    "api.d.ts"
  ],
  "nyc": {
    "reporter": [
      "lcov",
      "text"
    ],
    "exclude": [
      "test/**.*"
    ]
  },
  "prettier": {
    "semi": false,
    "tabWidth": 4,
    "useTabs": false
  }
}
