wilmoore/basic-authorization-header.js

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "basic-authorization-header",
  "description": "RFC2617 basic authorization header from username and password.",
  "version": "0.2.7",
  "author": "Wil Moore III <wil.moore@wilmoore.com>",
  "bugs": {
    "url": "https://github.com/wilmoore/basic-authorization-header.js/issues"
  },
  "dependencies": {
    "basic-auth-token": "^0.4.2"
  },
  "devDependencies": {
    "nodemon": "^1.3.7",
    "standard": "^4.0.0",
    "tap-spec": "^4.0.0",
    "tape": "^4.0.0",
    "tape-catch": "^1.0.4"
  },
  "files": [
    "index.js",
    "license",
    "package.json",
    "readme.md"
  ],
  "homepage": "https://github.com/wilmoore/basic-authorization-header.js",
  "keywords": [
    "RFC2617",
    "auth",
    "authorization",
    "base64",
    "basic",
    "header",
    "token"
  ],
  "license": "MIT",
  "main": "index.js",
  "repository": {
    "type": "git",
    "url": "https://github.com/wilmoore/basic-authorization-header.js"
  },
  "scripts": {
    "dev": "nodemon -x 'npm run test' -e 'js json'",
    "pretest": "npm run standard",
    "release-major": "npm version major && git push --follow-tags && npm publish",
    "release-minor": "npm version minor && git push --follow-tags && npm publish",
    "release-patch": "npm version patch && git push --follow-tags && npm publish",
    "standard": "standard",
    "test": "node test.js test/**/*.js | tap-spec"
  }
}