{
  "name": "srisum",
  "version": "2.0.0",
  "description": "CLI tool to compute and check Subresource Integrity digests.",
  "main": "index.js",
  "bin": {
    "srisum": "index.js"
  },
  "files": [
    "*.js",
    "srisum.1"
  ],
  "man": "./srisum.1",
  "engines": {
    "node": ">=8"
  },
  "scripts": {
    "docs": "tail -n +2 README.md | marked-man --manual 'User Commands' --version \"$npm_package_name@$npm_package_version\" > srisum.1",
    "prerelease": "npm t && npm run docs",
    "postrelease": "npm publish && git push --follow-tags",
    "pretest": "standard",
    "release": "standard-version -s",
    "test": "tap -J --coverage test/*.js",
    "update-coc": "weallbehave -o . && git add CODE_OF_CONDUCT.md && git commit -m 'docs(coc): updated CODE_OF_CONDUCT.md'",
    "update-contrib": "weallcontribute -o . && git add CONTRIBUTING.md && git commit -m 'docs(contributing): updated CONTRIBUTING.md'"
  },
  "repository": "https://github.com/zkat/srisum",
  "keywords": [
    "w3c",
    "web",
    "security",
    "integrity",
    "checksum",
    "hashing",
    "subresource integrity",
    "sri",
    "html",
    "cli"
  ],
  "author": {
    "name": "Kat Marchán",
    "email": "kzm@sykosomatic.org",
    "twitter": "maybekatz"
  },
  "license": "MIT",
  "dependencies": {
    "split": "^1.0.0",
    "ssri": "^5.2.4",
    "yargs": "^11.0.0"
  },
  "bundleDependencies": [
    "split",
    "ssri",
    "yargs"
  ],
  "devDependencies": {
    "bluebird": "^3.5.1",
    "marked-man": "^0.2.1",
    "mkdirp": "^0.5.1",
    "nyc": "^11.4.1",
    "rimraf": "^2.6.2",
    "standard": "^11.0.0",
    "standard-version": "^4.3.0",
    "tacks": "^1.2.6",
    "tap": "^11.1.1",
    "weallbehave": "^1.2.0",
    "weallcontribute": "^1.0.8"
  },
  "config": {
    "nyc": {
      "exclude": [
        "node_modules/**",
        "test/**"
      ]
    }
  }
}
