{
  "name": "@crmackey/fernet",
  "version": "0.0.15",
  "type": "module",
  "description": "ypeScript implementation of Fernet symmetric encryption.",
  "homepage": "https://github.com/CalebM1987/fernet#readme",
  "module": "./dist/esm/index.js",
  "main": "./dist/cjs/index.js",
  "types": "./dist/types/index.d.ts",
  "repository": {
    "type": "git",
    "url": "git://github.com/CalebM1987/fernet.git"
  },
  "publishConfig": {
    "registry": "https://registry.npmjs.org"
  },
  "keywords": [
    "symmetric",
    "encryption",
    "fernet"
  ],
  "scripts": {
    "test": "jest --verbose",
    "publish": "npm publish --access public",
    "build": "rm -rf dist && ts-node scripts/build.ts && tsc --emitDeclarationOnly --outDir dist/types"
  },
  "dependencies": {
    "buffer": "^6.0.3",
    "crypto-js": "3.1.2-1",
    "randombytes": "^2.1.0",
    "urlsafe-base64": "^1.0.0"
  },
  "devDependencies": {
    "@types/crypto-js": "^4.1.1",
    "@types/jest": "^29.0.0",
    "@types/node": "^18.0.0",
    "@types/randombytes": "^2.0.0",
    "@types/sinon": "^10.0.13",
    "@types/sinonjs__fake-timers": "^8.1.2",
    "cz-conventional-changelog": "^3.3.0",
    "esbuild": "^0.14.44",
    "jest": "^29.0.2",
    "jest-environment-jsdom": "^29.0.3",
    "sinon": "^14.0.0",
    "ts-jest": "^28.0.8"
  },
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-conventional-changelog"
    }
  }
}
