UNPKG

fernet-nodejs

Version:

Fernet algorithm implementation written in Node.js

59 lines (58 loc) 1.53 kB
{ "name": "fernet-nodejs", "repository": { "type": "git", "url": "https://github.com/zoran-php/fernet-nodejs.git" }, "version": "1.0.6", "description": "Fernet algorithm implementation written in Node.js", "main": "dist/index.js", "types": "dist/index.d.ts", "files": [ "/dist" ], "scripts": { "build": "npx tsc", "test": "jest", "format": "prettier --write \"src/**/*.ts\"", "lint": "eslint -c .eslintrc.json" }, "keywords": [ "fernet", "cryptography", "crypto", "cipher", "symmetric", "encryption", "decryption", "key" ], "author": "Zoran Davidovic", "license": "ISC", "devDependencies": { "@babel/core": "^7.21.0", "@babel/preset-env": "^7.20.2", "@babel/preset-typescript": "^7.21.0", "@jest/globals": "^29.4.3", "@types/jest": "^29.4.0", "@types/node": "^18.14.4", "@typescript-eslint/eslint-plugin": "^5.55.0", "babel-jest": "^29.4.3", "eslint": "^8.36.0", "eslint-config-airbnb": "^19.0.4", "eslint-config-prettier": "^8.7.0", "eslint-config-standard-with-typescript": "^34.0.1", "eslint-plugin-import": "^2.27.5", "eslint-plugin-jsx-a11y": "^6.7.1", "eslint-plugin-n": "^15.6.1", "eslint-plugin-prettier": "^4.2.1", "eslint-plugin-promise": "^6.1.1", "eslint-plugin-react": "^7.32.2", "eslint-plugin-react-hooks": "^4.6.0", "jest": "^29.4.3", "prettier": "^2.8.4", "ts-jest": "^29.0.5", "ts-node": "^10.9.1", "typescript": "^4.9.5" } }