{
  "name": "package-hash",
  "version": "1.2.0",
  "description": "Generates a hash for an installed npm package, useful for salting caches",
  "main": "index.js",
  "files": [
    "index.js",
    "index.js.map"
  ],
  "scripts": {
    "clean": "rimraf index.js index.js.map",
    "prebuild": "npm run clean",
    "build": "babel src --out-dir ./ --source-maps",
    "prepublish": "npm run build",
    "lint": "as-i-preach",
    "unpack-fixtures": "node scripts/unpack-fixtures.js",
    "pregenerate-fixture-index": "npm run unpack-fixtures",
    "generate-fixture-index": "node scripts/generate-fixture-index.js",
    "pretest": "npm run unpack-fixtures",
    "test": "ava",
    "posttest": "npm run lint",
    "coverage": "nyc npm test",
    "watch:build": "npm run build -- --watch",
    "watch:test": "npm run test -- --watch"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/novemberborn/package-hash.git"
  },
  "author": "Mark Wubben (https://novemberborn.net/)",
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/novemberborn/package-hash/issues"
  },
  "homepage": "https://github.com/novemberborn/package-hash#readme",
  "dependencies": {
    "md5-hex": "^1.3.0"
  },
  "devDependencies": {
    "@novemberborn/as-i-preach": "^2.0.1",
    "ava": "^0.14.0",
    "babel-cli": "^6.7.5",
    "babel-plugin-transform-es2015-block-scoping": "^6.7.1",
    "babel-plugin-transform-es2015-modules-commonjs": "^6.7.4",
    "babel-plugin-transform-es2015-shorthand-properties": "^6.5.0",
    "babel-plugin-transform-object-assign": "^6.5.0",
    "babel-plugin-transform-strict-mode": "^6.6.5",
    "nyc": "^6.4.0",
    "proxyquire": "^1.7.4",
    "rimraf": "^2.5.2",
    "tar": "^2.2.1"
  },
  "babel": {
    "plugins": [
      "transform-object-assign",
      "transform-es2015-block-scoping",
      "transform-es2015-modules-commonjs",
      "transform-es2015-shorthand-properties",
      "transform-strict-mode"
    ]
  },
  "nyc": {
    "cache": true,
    "exclude": [
      "scripts",
      "test"
    ],
    "reporter": [
      "html",
      "lcov",
      "text"
    ]
  },
  "_from": "package-hash@1.2.0",
  "_resolved": "http://registry.npm.taobao.org/package-hash/download/package-hash-1.2.0.tgz"
}