{
  "name": "syntax-cli-prog",
  "version": "0.1.7",
  "description": "Syntactic analysis toolkit, language agnostic parsers generator.",
  "repository": {
    "type": "git",
    "url": "https://github.com/florian-bd/syntax.git"
  },
  "bugs": "https://github.com/DmitrySoshnikov/syntax/issues",
  "main": "index.js",
  "scripts": {
    "build": "node scripts/build.js",
    "watch": "node scripts/build.js --watch",
    "test": "jest",
    
    "eslint": "eslint src/ && eslint bin/syntax"
  },
  "bin": {
    "syntax-cli": "./bin/syntax"
  },
  "keywords": [
    "parser",
    "LL(1)",
    "LR(1)",
    "LALR(1)",
    "SLR(1)",
    "generator",
    "JavaScript",
    "Python",
    "PHP",
    "Ruby",
    "C#"
  ],
  "author": "Dmitry Soshnikov",
  "license": "MIT",
  "dependencies": {
    "nomnom": "^1.8.1",
    "cli-table3": "^0.5.0",
    "colors": "^1.1.2"
  },
  "devDependencies": {
    "babel-cli": "^6.24.1",
    "babel-preset-env": "^1.6.0",
    "babel-plugin-transform-object-rest-spread": "6.23.0",
    "shelljs": "^0.7.8",
    "jest-cli": "^20.0.4",
    "eslint": "^4.11.0",
    "prettier": "^1.11.1"
  }
}
