{
  "name": "@graphistry/falcor-query-syntax",
  "version": "2.11.0",
  "description": "ES6 Template String and Builder function for Creating Falcor Paths (Experimental)",
  "main": "index.js",
  "scripts": {
    "test": "_mocha --reporter dot --colors --full-trace --timeout 2000 test/index.js",
    "debug": "node --inspect --debug-brk ./node_modules/.bin/_mocha ./test/index.js",
    "test-coverage": "cross-env NODE_ENV=test nyc npm test",
    "perf": "node perf",
    "build-paths": "pegjs -o lib/paths-parser.peg.js --format umd peg/paths-parser.peg",
    "build-route": "pegjs -o lib/route-parser.peg.js --format umd peg/route-parser.peg",
    "build-paths-min": "npm run build-paths && google-closure-compiler-js lib/paths-parser.peg.js > lib/paths-parser.js && rimraf lib/paths-parser.peg.js",
    "build-route-min": "npm run build-route && google-closure-compiler-js lib/route-parser.peg.js > lib/route-parser.js && rimraf lib/route-parser.peg.js",
    "build": "npm-run-all --silent -p build-paths-min build-route-min",
    "start": "npm run build && npm test",
    "prepublish": "npm run build && npm test",
    "d": "npm run test-debug",
    "td": "npm run test-detail",
    "test-debug": "cross-env NODE_ENV=test node --inspect --debug-brk ./node_modules/.bin/_mocha --bail --full-trace --reporter nyan --timeout 0 ./test/index.js",
    "test-detail": "cross-env NODE_ENV=test _mocha --full-trace --reporter nyan --timeout 5000 ./test/index.js"
  },
  "files": [
    "lib",
    "test",
    "index.js",
    ".babelrc",
    "README.md"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/graphistry/falcor.git"
  },
  "keywords": [
    "falcor",
    "path",
    "map",
    "es6",
    "template",
    "string"
  ],
  "authors": [
    "Jafar Husain <jhusain@gmail.com> (https://github.com/jhusain/)",
    "Paul Taylor <paul.e.taylor@me.com> (https://github.com/trxcllnt/)"
  ],
  "license": "Apache-2.0",
  "bugs": {
    "url": "https://github.com/graphistry/falcor/issues"
  },
  "homepage": "https://github.com/graphistry/falcor/blob/master/packages/falcor-query-syntax/README.md",
  "dependencies": {
    "@graphistry/falcor-path-utils": "^2.9.10",
    "babel-runtime": "^6.26.0",
    "pegjs": "0.10.0"
  },
  "devDependencies": {
    "@graphistry/falcor-json-graph": "^2.9.10",
    "@graphistry/falcor-router": "^2.11.0",
    "babel-plugin-istanbul": "~4.1.4",
    "babel-plugin-transform-runtime": "~6.23.0",
    "babel-register": "^6.26.0",
    "benchmark": "~2.1.4",
    "chai": "^4.1.2",
    "cross-env": "~5.0.0",
    "google-closure-compiler-js": "~20170806.0.0",
    "mocha": "^3.5.0",
    "npm-run-all": "^4.1.1",
    "nyc": "^11.2.1",
    "rimraf": "~2.6.0"
  },
  "nyc": {
    "exclude": [
      "lib/paths-parser.js",
      "lib/route-parser.js"
    ],
    "include": [
      "lib/*.js",
      "lib/**/*.js"
    ],
    "require": [
      "babel-register"
    ],
    "reporter": [
      "html",
      "text"
    ],
    "sourceMap": false,
    "instrument": false
  }
}
