acuminous/cryptus

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "cryptus",
  "version": "2.0.0",
  "description": "An ultra thin crypto wrapper for encrypting and decrypting utf-8 strings",
  "main": "index.js",
  "scripts": {
    "coverage": "nyc --report html --reporter lcov --reporter text-summary node test",
    "lint": "eslint .",
    "test": "node test",
    "examples": "node ./examples/callback-example.js && node ./examples/synchronous-example.js && node ./examples/promise-example.js && node ./examples/async-await-example.js"
  },
  "bin": {
    "create-key": "./bin/create-key.js",
    "encrypt": "./bin/encrypt.js",
    "decrypt": "./bin/decrypt.js"
  },
  "keywords": [
    "cryptopgraphy",
    "crypto",
    "encrypt",
    "decrypt",
    "encryption",
    "decryption",
    "synchronous",
    "asynchronous",
    "callback",
    "promise",
    "async",
    "sync",
    "await"
  ],
  "author": "Stephen Cresswell",
  "license": "ISC",
  "devDependencies": {
    "async": "^3.2.0",
    "eslint": "^7.18.0",
    "husky": "^4.3.8",
    "nyc": "^15.1.0",
    "p-limit": "^3.1.0",
    "zunit": "^3.0.2"
  },
  "directories": {
    "example": "examples",
    "test": "test"
  },
  "dependencies": {},
  "engines": {
    "node": ">=10.0.0"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/acuminous/cryptus.git"
  },
  "bugs": {
    "url": "https://github.com/acuminous/cryptus/issues"
  },
  "homepage": "https://acuminous.github.io/cryptus/",
  "husky": {
    "hooks": {
      "pre-commit": "npm run lint && npm run test && npm run examples"
    }
  }
}