{
  "name": "jscc-parser",
  "version": "0.40.2",
  "main": "main.js",
  "description": "A LALR(1) Parser Generator for JavaScript written in JavaScript.",
  "license": "BSD-3-Clause",
  "keywords": [
    "jscc",
    "JS/CC",
    "lexer",
    "parser",
    "lexical analysis",
    "yacc",
    "lex"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/abrobston/jscc.git"
  },
  "bugs": "https://github.com/abrobston/jscc/issues",
  "contributors": [
    {
      "name": "Jan Max Meyer",
      "email": "contact@phorward-software.com",
      "web": "http://jscc.phorward-software.com/"
    },
    {
      "name": "Sergiy Shatunov"
    },
    {
      "name": "Louis P. Santillan"
    },
    {
      "name": "Andrew Brobston",
      "email": "andrew@brobston.com"
    }
  ],
  "devDependencies": {
    "almond": "~0.3.2",
    "amdclean": "~2.7.0",
    "amdefine": "~1.0.0",
    "async": "~2.0.1",
    "chai": "~3.5.0",
    "codecov": "~1.0.1",
    "extract-zip": "~1.5.0",
    "google-closure-compiler": "=20160517.0.0",
    "gulp": "~3.9.1",
    "jformatter": "~1.0.13",
    "jsdoc": "~3.4.0",
    "mocha": "~2.4.5",
    "nyc": "~6.6.1",
    "phantomjs-prebuilt": "~2.1.9",
    "requirejs": "~2.2.0",
    "requirejs-text": "~2.0.12",
    "rest": "^2.0.0",
    "sinon": "~1.17.5",
    "source-map": "~0.5.6",
    "squirejs": "~0.2.1",
    "temp": "~0.8.3"
  },
  "homepage": "http://jscc.brobston.com/",
  "engine": [
    "node",
    "rhino",
    "nashorn"
  ],
  "bin": {
    "jscc-browser": "./bin/npm-browser.js",
    "jscc-nashorn": "./bin/npm-nashorn.js",
    "jscc-node": "./bin/npm-node.js",
    "jscc-rhino": "./bin/npm-rhino.js"
  },
  "directories": {
    "lib": "lib"
  },
  "nyc": {
    "cache": true,
    "require": [
      "./main"
    ],
    "exclude": [
      "test/**/*.js",
      "asyncSupport.js",
      "gulpfile.js",
      "resolvePackageDirectories.js",
      "volo/**/*.js",
      "lib/jscc/bitset/bitset.js",
      "lib/jscc/bitset/BitSetBool.js",
      "lib/jscc/bitset/BitSetJava.js",
      "lib/jscc/io/io.js",
      "lib/jscc/io/ioBrowser.js",
      "lib/jscc/io/ioNashorn.js",
      "lib/jscc/io/ioRhino.js",
      "lib/jscc/io/ioSpiderMonkey.js",
      "lib/jscc/io/ioV8.js",
      "lib/jscc/log/log.js",
      "lib/jscc/log/logBrowser.js",
      "lib/jscc/log/logJava.js"
    ]
  },
  "scripts": {
    "test": "nyc gulp test",
    "coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
    "prepublish": "npm update --dev && gulp clean && gulp build"
  }
}
