{
  "name": "entropy-string",
  "version": "4.1.0",
  "description": "Efficiently generate cryptographically strong random strings of specified entropy from various character sets.",
  "main": "entropy-string.js",
  "directories": {
    "dist": "dist",
    "test": "test"
  },
  "browser": {
    "./lib/csprng-bytes.js": "./lib/csprng-bytes-browser.js"
  },
  "scripts": {
    "build": "yarn clean && BABEL_ENV=production babel --out-dir=dist entropy-string.js lib/*.js",
    "clean": "rm -f dist/*.js",
    "examples": "cd examples && BABEL_ENV=development babel --out-dir=dist *.js lib/*.js && cd ..",
    "lint": "eslint entropy-string.js lib/*.js tests/*js examples/*js",
    "prepare": "yarn build",
    "test": "yarn lint && yarn jest"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/EntropyString/JavaScript.git"
  },
  "keywords": [
    "entropy",
    "random",
    "string",
    "secure",
    "security"
  ],
  "author": "Paul Rogers <http://knoxen.com>",
  "maintainers": [
    {
      "email": "paul@knoxen.com",
      "name": "knoxen"
    },
    {
      "email": "paul@dingosky.com",
      "name": "dingo sky"
    }
  ],
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/EntropyString/JavaScript/issues"
  },
  "homepage": "https://github.com/EntropyString/JavaScript#README",
  "jest": {
    "testRegex": "tests/.*\\.(js|jsx)$",
    "bail": true
  },
  "devDependencies": {
    "ava": "^0.25.0",
    "babel-cli": "^6.26.0",
    "babel-core": "^6.26.0",
    "babel-plugin-transform-runtime": "^6.23.0",
    "babel-preset-es2015": "^6.24.1",
    "babel-preset-stage-3": "^6.24.1",
    "eslint": "^4.19.1",
    "eslint-config-airbnb": "^16.1.0",
    "eslint-plugin-import": "^2.9.0",
    "eslint-plugin-jsx-a11y": "^6.0.3",
    "eslint-plugin-react": "^7.7.0",
    "jest": "^22.4.3"
  },
  "dependencies": {
    "babel-runtime": "^6.26.0"
  }
}
