{
  "name": "regexp-stream-tokenizer",
  "version": "0.2.2",
  "description": "A regular expression (RexExp) stream tokenizer.",
  "main": "index.js",
  "scripts": {
    "test": "nyc --reporter=json ava",
    "posttest": "npm run lint",
    "coverage": "istanbul report --reporter=html && open coverage/lcov-report/index.html",
    "codecov": "cat coverage/coverage-final.json | codecov",
    "lint": "eslint ./src ./test",
    "release:major": "npm version major && git push --follow-tags",
    "release:minor": "npm version minor && git push --follow-tags",
    "release:patch": "npm version patch && git push --follow-tags"
  },
  "config": {
    "nyc": {
      "exclude": [
        "node_modules/",
        "test/"
      ]
    }
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/jamesramsay/regexp-stream-tokenizer.git"
  },
  "keywords": [
    "streams",
    "through",
    "through2",
    "tokenizer",
    "tokeniser",
    "regexp",
    "regex"
  ],
  "author": {
    "name": "James Ramsay",
    "url": "http://jramsay.com.au"
  },
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/jamesramsay/regexp-stream-tokenizer/issues"
  },
  "homepage": "https://github.com/jamesramsay/regexp-stream-tokenizer",
  "dependencies": {
    "clone-regexp": "^1.0.0",
    "left-split": "^1.0.0",
    "lodash": "^4.0.0",
    "through2": "^2.0.0",
    "xtend": "^4.0.1"
  },
  "devDependencies": {
    "ava": "^0.15.0",
    "codecov.io": "^0.1.6",
    "eslint": "^2.3.0",
    "eslint-config-airbnb": "^9.0.0",
    "eslint-plugin-import": "^1.8.1",
    "istanbul": "^0.4.1",
    "nyc": "^6.0.0"
  },
  "publishConfig": {
    "tag": "latest"
  }
}
