{
  "name": "jison-modules",
  "version": "0.2.1",
  "description": "A Jison preprocessor for composing modular grammars",
  "main": "index.js",
  "scripts": {
    "build": "for parser in src/*.y; do name=$(basename $parser .y); jison src/$name.{y,l} -o lib/parsers/$name.js; done",
    "test": "eslint . && istanbul cover _mocha 'tests/**/*-test.js' tests/acceptance.js",
    "watch": "mocha --watch 'tests/**/*-test.js' tests/acceptance.js --watch-extensions l,y",
    "report-coverage": "istanbul-coveralls"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/dfreeman/jison-modules.git"
  },
  "author": "Dan Freeman",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/dfreeman/jison-modules/issues"
  },
  "homepage": "https://github.com/dfreeman/jison-modules#readme",
  "devDependencies": {
    "chai": "4.0.0-canary.1",
    "chai-as-promised": "^6.0.0",
    "eslint": "^1.6.0",
    "istanbul": "^0.4.2",
    "istanbul-coveralls": "^1.0.3",
    "jison": "^0.4.15",
    "mocha": "^3.2.0",
    "mock-fs": "^3.7.0"
  },
  "bundledDependencies": [
    "ebnf-parser",
    "lex-parser"
  ],
  "dependencies": {
    "core-object": "^1.1.0",
    "ebnf-parser": "dfreeman/ebnf-parser#06466a1",
    "lex-parser": "dfreeman/lex-parser#0218438",
    "lodash": "^3.10.1",
    "promise": "^7.1.1"
  }
}
