{
  "name": "wal",
  "version": "0.9.3",
  "description": "An implementation of write-ahead logging (WAL) for nodejs.",
  "keywords": [
    "wal",
    "write-ahead",
    "log",
    "automic",
    "durable"
  ],
  "main": "index.js",
  "scripts": {
    "doc": "esdoc -c ./esdoc.json",
    "doc:watch": "chokidar -i doc -c 'npm run doc' .",
    "lint": "eslint .",
    "test": "tape -r babel-register test/**/*.test.js | tap-spec",
    "test:watch": "chokidar . -c 'npm test'",
    "cover": "istanbul cover test",
    "ci": "npm run lint && npm test",
    "clean": "rm -rf ./build ./coverage .coverag*",
    "build": "npm run clean && babel src/ -s inline -d build/",
    "prepublish": "npm run build"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/LeisureLink/write-ahead-log"
  },
  "author": "pclark@leisurelink.com",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/LeisureLink/write-ahead-log/issues"
  },
  "homepage": "https://github.com/LeisureLink/write-ahead-log",
  "dependencies": {
    "assert-plus": "^1.0.0",
    "es6-promisify": "^4.0.0",
    "ranfile": "^1.0.2"
  },
  "devDependencies": {
    "babel-cli": "^6.8.0",
    "babel-core": "^6.8.0",
    "babel-eslint": "^6.0.4",
    "babel-preset-es2015": "^6.6.0",
    "babel-register": "^6.8.0",
    "chokidar-cli": "^1.2.0",
    "deep-equal": "^1.0.1",
    "esdoc": "^0.4.7",
    "istanbul": "^0.4.3",
    "tap-spec": "^4.1.1",
    "tape": "^4.5.1",
    "tmp": "0.0.28"
  }
}
