kripod/hmac-rng.js

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "hmac-rng",
  "version": "1.1.0",
  "description": "HMAC-based random number generator.",
  "author": {
    "name": "Kristóf Poduszló"
  },
  "main": "lib/index.js",
  "directories": {
    "lib": "./lib",
    "example": "./example"
  },
  "scripts": {
    "start": "node ./example",
    "test": "rimraf ./coverage && istanbul cover ./tests",
    "docs": "jsdoc2md ./lib/**/*.js -t ./jsdoc2md/README.hbs > ./README.md"
  },
  "devDependencies": {
    "codeclimate-test-reporter": "^0.3.1",
    "eslint": "^2.3.0",
    "istanbul": "^0.4.2",
    "jsdoc": "^3.4.0",
    "jsdoc-to-markdown": "^1.3.3",
    "rimraf": "^2.5.2",
    "tape": "^4.5.0"
  },
  "keywords": [
    "rng",
    "random",
    "number",
    "generator",
    "hmac"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/kripod/hmac-rng.js.git"
  },
  "bugs": {
    "url": "https://github.com/kripod/hmac-rng.js/issues"
  },
  "license": "MIT"
}