{
  "name": "node-gdb",
  "version": "0.0.5",
  "description": "Control GDB from node.js",
  "main": "lib/index.js",
  "scripts": {
    "jison": "jison ./src/gdbmi.jison -o ./lib/gdbmi.js",
    "coffee": "coffee --compile --output lib src",
    "prepublish": "npm run coffee && npm run jison",
    "pretest": "npm run jison",
    "test": "mocha --compilers coffee:coffee-script/register --require coffee-coverage/register-istanbul",
    "posttest": "istanbul report"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/gsmcmullin/node-gdb.git"
  },
  "keywords": [
    "gdb",
    "debug",
    "debugger"
  ],
  "author": {
    "name": "Gareth McMullin",
    "email": "gareth@blacksphere.co.nz"
  },
  "license": "GPL-3.0",
  "bugs": {
    "url": "https://github.com/gsmcmullin/node-gdb/issues"
  },
  "homepage": "https://github.com/gsmcmullin/node-gdb#readme",
  "dependencies": {
    "event-kit": "^2.2.0",
    "underscore": "^1.8.3"
  },
  "devDependencies": {
    "coffee-coverage": "^1.0.1",
    "coffee-script": "^1.11.1",
    "istanbul": "^0.4.5",
    "jison": "~0.4.17",
    "mocha": "^3.1.2",
    "sinon": "^1.17.6"
  }
}
