{
  "name": "@atomist/microgrammar",
  "version": "1.2.1",
  "description": "Parsing library filling the gap between regular expressions and complete grammars",
  "author": {
    "name": "Atomist",
    "email": "support@atomist.com",
    "url": "https://atomist.com/"
  },
  "license": "SEE LICENSE IN LICENSE",
  "homepage": "https://github.com/atomist/microgrammar#readme",
  "repository": {
    "type": "git",
    "url": "https://github.com/atomist/microgrammar.git"
  },
  "bugs": {
    "url": "https://github.com/atomist/microgrammar/issues"
  },
  "keywords": [
    "atomist",
    "microgrammar",
    "parser"
  ],
  "main": "./index.js",
  "types": "./index.d.ts",
  "dependencies": {
    "json-stringify-safe": "^5.0.1",
    "lodash.flatten": "^4.4.0",
    "stringify-tree": "^1.0.2"
  },
  "devDependencies": {
    "@types/chai": "^3.5.0",
    "@types/mocha": "^5.2.5",
    "@types/power-assert": "^1.5.0",
    "chai": "^4.1.2",
    "espower-typescript": "^9.0.0",
    "mocha": "^5.2.0",
    "npm-run-all": "^4.1.5",
    "power-assert": "^1.6.0",
    "rimraf": "^2.6.3",
    "supervisor": "^0.12.0",
    "ts-node": "^7.0.1",
    "tslint": "^5.12.0",
    "typedoc": "^0.13.0",
    "typescript": "^3.2.2"
  },
  "directories": {
    "test": "test"
  },
  "scripts": {
    "autotest": "supervisor --watch index.ts,lib,test --extensions ts --no-restart-on exit --quiet --exec npm -- test",
    "benchmark": "run-s benchmark:run benchmark:process",
    "benchmark:process": "node --prof-process isolate-* > profile.txt",
    "benchmark:run": "mocha --prof --require espower-typescript/guess \"test/**/*.benchmark.ts\"",
    "build": "run-s compile test lint doc",
    "clean": "run-p clean:compile clean:doc clean:run",
    "clean:compile": "rimraf git-info.json \"index.{d.ts,js{,.map}}\" \"{lib,test}/**/*.{d.ts,js{,.map}}\" lib/typings/types.ts",
    "clean:dist": "run-s clean clean:npm",
    "clean:doc": "rimraf doc",
    "clean:npm": "rimraf node_modules",
    "clean:run": "rimraf *-v8.log profile.txt log",
    "compile": "tsc --project .",
    "doc": "typedoc --mode modules --excludeExternals --ignoreCompilerErrors --exclude \"**/*.d.ts\" --out doc index.ts lib",
    "lint": "tslint --format verbose --project . --exclude \"node_modules/**\" --exclude \"**/*.d.ts\" \"**/*.ts\"",
    "lint:fix": "npm run lint -- --fix",
    "test": "mocha --require espower-typescript/guess \"test/**/*.test.ts\"",
    "test:one": "mocha --require espower-typescript/guess \"test/**/${TEST:-*.test.ts}\"",
    "typedoc": "npm run doc"
  },
  "engines": {
    "node": ">=8.0.0",
    "npm": ">=5.0.0"
  }
}
