{
  "name": "superstring",
  "version": "2.4.4",
  "description": "A data structure to efficiently represent the results of applying patches.",
  "main": "./index",
  "browser": "./browser",
  "scripts": {
    "build:node": "node-gyp rebuild",
    "build:browser": "script/build-browser-version.sh",
    "build": "npm run build:node && npm run build:browser",
    "test:native": "script/test-native.js",
    "test:node": "mocha test/js/*.js",
    "test:browser": "SUPERSTRING_USE_BROWSER_VERSION=1 mocha test/js/*.js",
    "test": "npm run test:node && npm run test:browser",
    "benchmark": "node benchmark/marker-index.benchmark.js",
    "prepublishOnly": "git submodule update --init --recursive ",
    "standard": "standard --recursive src test"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/atom/superstring.git"
  },
  "keywords": [
    "text",
    "data-structure"
  ],
  "author": "Nathan Sobo <nathan@github.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/atom/superstring/issues"
  },
  "homepage": "https://github.com/atom/superstring",
  "dependencies": {
    "nan": "^2.14.2"
  },
  "devDependencies": {
    "chai": "^2.0.0",
    "mocha": "^2.3.4",
    "random-seed": "^0.2.0",
    "standard": "^4.5.4",
    "temp": "^0.8.3",
    "unzip": "^0.1.11"
  },
  "standard": {
    "global": [
      "describe",
      "it",
      "expect"
    ]
  }
}
