{
  "name": "atom-patch",
  "version": "1.0.4",
  "description": "A data structure to efficiently represent the results of applying patches.",
  "main": "./build/Release/atom_patch",
  "scripts": {
    "test-native": "node-gyp rebuild --debug --tests && ./build/Debug/tests",
    "test-js": "mocha ./test/helpers/setup test/*.js",
    "test": "npm run test-native && npm run test-js",
    "prepublish": "npm run standard",
    "standard": "standard --recursive src test",
    "ci": "npm run standard && npm run test",
    "ci-windows": "npm run standard && npm run test"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/nathansobo/atom-patch.git"
  },
  "keywords": [
    "patch data-structure"
  ],
  "author": "Nathan Sobo <nathan@github.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/nathansobo/atom-patch/issues"
  },
  "homepage": "https://github.com/nathansobo/atom-patch",
  "dependencies": {
    "nan": "^2.4.0"
  },
  "devDependencies": {
    "babel": "^5.0.0",
    "babel-eslint": "^4.0.5",
    "chai": "^2.0.0",
    "mocha": "^2.3.4",
    "random-seed": "^0.2.0",
    "segfault-handler": "^1.0.0",
    "standard": "^4.5.4"
  },
  "standard": {
    "parser": "babel-eslint",
    "global": [
      "describe",
      "it",
      "expect"
    ]
  }
}
