UNPKG

crpdo

Version:

A unified cryptographic library integrating diverse modules to provide robust and versatile cryptographic solutions for Node.js and the browser.

106 lines (105 loc) 2.49 kB
{ "name": "crpdo", "version": "1.0.8", "description": "A unified cryptographic library integrating diverse modules to provide robust and versatile cryptographic solutions for Node.js and the browser.", "author": "Basedwon <basedwon@protonmail.com>", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/basedwon/crpdo.git" }, "bugs": { "url": "https://github.com/basedwon/crpdo/issues" }, "homepage": "https://github.com/basedwon/crpdo#readme", "main": "./lib/crpdo.js", "exports": { ".": { "browser": "./lib/crpdo.js", "node": "./lib/crpdo-node.js" }, "./*/": "./lib/*/", "./*": "./lib/*.js" }, "browser": { ".": "./lib/crpdo.js", "coins": "./lib/coins.js", "crypto": "./lib/crypto.js", "hash": "./lib/hash.js", "key": "./lib/key.js", "merkle": "./lib/merkle.js", "mnemonic": "./lib/mnemonic.js", "nacl": "./lib/nacl.js", "random": "./lib/random.js", "time": "./lib/time.js" }, "scripts": { "dev": "nodemon -w .. -x npm test", "docs": "jsdoc2md lib/*.js > docs/api.md", "update": "npm run update:prod && npm run update:dev", "update:prod": "npm i -S @crpdo/crypto@latest @crpdo/key@latest @crpdo/merkle@latest @crpdo/time@latest basd@latest", "update:dev": "npm i -D @basd/testr@latest", "test": "testr test" }, "dependencies": { "@crpdo/crypto": "^0.0.6", "@crpdo/key": "^0.0.5", "@crpdo/merkle": "^0.0.4", "@crpdo/time": "^0.0.4", "basd": "^1.0.16" }, "devDependencies": { "@basd/testr": "^0.1.2", "jsdoc": "^4.0.2", "jsdoc-to-markdown": "^8.0.0" }, "keywords": [ "cryptography", "nodejs", "browser-based", "crypto-library", "tweetnacl", "cryptographic-functions", "JavaScript", "library", "open-source", "security", "encryption", "decryption", "hashing", "hmac", "pbkdf", "hkdf", "randomBytes", "verify", "key derivation", "AES", "RSA", "SHA", "MD5", "elliptic curve", "symmetric cryptography", "asymmetric cryptography", "public key", "private key", "secure", "signature", "SSL", "TLS", "https", "secure communication", "confidentiality", "integrity", "web security", "ciphers", "cryptanalysis", "cryptology", "cryptosystem", "steganography", "PKI", "entropy", "nonce", "CSRNG", "PRNG" ] }