binoculars/aws-sigv4

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "aws-sigv4",
  "version": "2.2.0",
  "description": "AWS Signature Version 4",
  "main": "lib/node/index.js",
  "engines": {
    "node": ">=4"
  },
  "directories": {
    "test": "test"
  },
  "scripts": {
    "pretest": "scripts/get-fixtures.js",
    "test": "nyc mocha test/index.js --compilers js:babel-core/register,js:babel-polyfill",
    "coverage": "nyc report --reporter=text-lcov | coveralls",
    "build": "webpack",
    "docs": "esdoc"
  },
  "keywords": [
    "aws",
    "signature"
  ],
  "author": "Barrett K. Harber <barrett.harber@gmail.com>",
  "license": "Unlicense",
  "dependencies": {},
  "devDependencies": {
    "babel-cli": "^6.24.1",
    "babel-core": "^6.24.1",
    "babel-loader": "^7.0.0",
    "babel-polyfill": "^6.23.0",
    "babel-preset-env": "^1.4.0",
    "chai": "^4.0.1",
    "coveralls": "^2.11.4",
    "eslint": "^4.1.0",
    "mocha": "^3.0.2",
    "mocha-eslint": "^3.0.1",
    "mocha-loader": "1.1.1",
    "nyc": "10.3.2",
    "unzip": "0.1.11",
    "webpack": "^3.0.0"
  },
  "babel": {
    "presets": [
      [
        "env",
        {
          "targets": {
            "node": "current"
          }
        }
      ]
    ]
  },
  "nyc": {
    "include": [
      "src/node/*"
    ],
    "sourceMap": true,
    "cache": true,
    "report-dir": "./coverage"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/binoculars/aws-sigv4.git"
  },
  "bugs": {
    "url": "https://github.com/binoculars/aws-sigv4/issues"
  },
  "homepage": "https://binoculars.github.io/aws-sigv4/"
}