{
  "name": "node-rev",
  "version": "1.3.0",
  "description": "cli and node api version of gulp/grunt-rev, uses rev-path, rev-hash to generate a json of assets",
  "keywords": "rev, rev-path, rev-hash, assets, manifest",
  "main": "./lib/index.js",
  "bin": {
    "nodeRev": "./lib/cli.js"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/kellyrmilligan/node-rev.git"
  },
  "scripts": {
    "test": "npm-run-all clean lint babel babel-test lab",
    "watch-test": "onchange 'src/*.es6' 'test/*.es6' -i -- npm test",
    "lab": "lab -c -C -r tap -o stdout -r html -o coverage.html",
    "lab-coveralls": "lab -r lcov | ./node_modules/.bin/coveralls",
    "clean": "rm -rf ./lib",
    "lint": "eslint src/ --ignore-path .gitignore",
    "watch-lint": "onchange 'src/*.es6' -i -- npm run lint",
    "babel": "babel src -d lib -D --source-maps",
    "babel-test": "babel test -d test -D --source-maps",
    "watch-babel": "babel src -d lib -w -D --source-maps",
    "prepublish": "npm run build",
    "build": "npm-run-all clean lint babel",
    "dev": "npm-run-all clean --parallel watch-lint watch-babel"
  },
  "author": "Kelly Milligan",
  "license": "MIT",
  "dependencies": {
    "commondir": "^1.0.1",
    "fs-extra": "^1.0.0",
    "yargs": "^6.0.0",
    "glob": "^7.0.3",
    "rev-hash": "^1.0.0",
    "rev-path": "^1.0.0"
  },
  "devDependencies": {
    "babel-cli": "^6.7.7",
    "babel-core": "^6.7.7",
    "babel-eslint": "^7.0.0",
    "babel-preset-es2015": "^6.6.0",
    "code": "^4.0.0",
    "coveralls": "^2.11.9",
    "eslint": "^3.1.0",
    "eslint-watch": "^2.1.10",
    "lab": "^11.0.0",
    "npm-run-all": "^3.0.0",
    "onchange": "^3.0.0"
  }
}
