wilmoore/basic-auth-token.js

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "basic-auth-token",
  "description": "Token generated by concatenating username and password with `:` character within a base64 encoded string.",
  "version": "0.4.2",
  "author": "Wil Moore III <wil.moore@wilmoore.com>",
  "bugs": {
    "url": "https://github.com/wilmoore/basic-auth-token.js/issues"
  },
  "dependencies": {},
  "devDependencies": {
    "istanbul": "^0.3.13",
    "nodemon": "^1.3.7",
    "standard": "^3.7.1",
    "tap-spec": "^2.2.2",
    "tape": "^4.0.0",
    "tape-catch": "^1.0.4"
  },
  "files": [
    "index.js",
    "license",
    "package.json",
    "readme.md"
  ],
  "homepage": "https://github.com/wilmoore/basic-auth-token.js",
  "keywords": [
    "RFC2617",
    "authorization",
    "base64",
    "basic",
    "header",
    "token"
  ],
  "license": "MIT",
  "main": "index.js",
  "repository": {
    "type": "git",
    "url": "https://github.com/wilmoore/basic-auth-token.js"
  },
  "scripts": {
    "cover": "istanbul cover test.js",
    "dev": "nodemon -x 'npm run test --silent' -e 'js json'",
    "standard": "standard",
    "test": "npm run standard --silent && node test.js | tap-spec"
  }
}