| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- {
- "name": "crypto-es",
- "version": "1.2.7",
- "description": "A cryptography algorithms library compatible with ES6 and TypeScript",
- "keywords": [
- "typescript",
- "security",
- "crypto",
- "cipher",
- "ArrayBuffer",
- "TypedArray",
- "file",
- "ECMAScript",
- "ES6",
- "Hash",
- "MD5",
- "SHA1",
- "SHA-1",
- "SHA2",
- "SHA-2",
- "SHA3",
- "SHA-3",
- "SHA256",
- "SHA-256",
- "RC4",
- "Rabbit",
- "AES",
- "DES",
- "3DES",
- "TripleDES",
- "PBKDF2",
- "HMAC",
- "HEX",
- "Base64"
- ],
- "type": "module",
- "main": "lib/index.js",
- "types": "lib/index.d.ts",
- "files": [
- "lib"
- ],
- "scripts": {
- "test": "jest",
- "debug": "node --experimental-modules __tests__/debug.js"
- },
- "repository": {
- "type": "git",
- "url": "git+https://github.com/entronad/crypto-es.git"
- },
- "author": "LIN Chen",
- "license": "MIT",
- "bugs": {
- "url": "https://github.com/entronad/crypto-es/issues"
- },
- "homepage": "https://github.com/entronad/crypto-es#readme",
- "devDependencies": {
- "@babel/core": "^7.7.7",
- "@babel/plugin-transform-modules-commonjs": "^7.7.5",
- "babel-jest": "^24.9.0",
- "eslint": "^6.8.0",
- "eslint-config-airbnb-base": "^14.0.0",
- "eslint-plugin-import": "^2.19.1",
- "jest": "^24.9.0"
- },
- "jest": {
- "testRegex": "(/__tests__/.*\\.test\\.js)$"
- }
- }
|