UNPKG

@groww-tech/encryption

Version:

Encryption service as name suggests provides encryption, decryption facility with all major algorithms in trend.

56 lines 1.59 kB
{ "name": "@groww-tech/encryption", "version": "1.1.1", "description": "Encryption service as name suggests provides encryption, decryption facility with all major algorithms in trend.", "main": "dist/index.js", "module": "dist/esm/index.js", "types": "dist/index.d.ts", "files": [ "/dist" ], "sideEffects": false, "repository": { "type": "git", "url": "git+https://github.com/Groww/webster" }, "keywords": [ "groww", "web service", "encryption", "decryption" ], "author": "Groww Core Team <web-core@groww.in>", "contributors": [ { "name": "Vikas Singh", "url": "https://twitter.com/VikasSi25579022" }, { "name": "Sandeep", "url": "https://www.linkedin.com/in/sandeep-sharma2/" } ], "license": "MIT", "publishConfig": { "access": "public" }, "bugs": { "url": "https://github.com/Groww/webster/issues" }, "homepage": "https://github.com/Groww/webster/tree/develop/packages/encryption#readme", "devDependencies": { "@types/crypto-js": "4.1.1", "esbuild-plugin-glob": "1.0.5", "tsup": "5.11.11", "typescript": "4.4.4", "vitest": "0.29.7" }, "peerDependencies": { "crypto-js": ">= 3.3.0" }, "scripts": { "build": "tsup --env.NODE_ENV production", "pushTags": "PACKAGE_VERSION=$(cat package.json | grep \\\"version\\\" | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]') && git tag -a encryption-v$PACKAGE_VERSION -m \"@groww-tech/encryption-v$PACKAGE_VERSION\" && git push --tags", "test": "vitest run" } }