feistel-cipher
Advanced tools
Comparing version 1.3.11 to 1.3.12
@@ -25,3 +25,7 @@ "use strict"; | ||
if (k2 === undefined) k2 = k; | ||
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); | ||
var desc = Object.getOwnPropertyDescriptor(m, k); | ||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { | ||
desc = { enumerable: true, get: function() { return m[k]; } }; | ||
} | ||
Object.defineProperty(o, k2, desc); | ||
}) : (function(o, m, k, k2) { | ||
@@ -28,0 +32,0 @@ if (k2 === undefined) k2 = k; |
{ | ||
"name": "feistel-cipher", | ||
"version": "1.3.11", | ||
"version": "1.3.12", | ||
"description": "Feistel cipher implementation for format-preserving encryption", | ||
@@ -32,3 +32,3 @@ "main": "dist/lib/src/typescript/index.js", | ||
"peerDependencies": { | ||
"blakejs": "^1.1.1", | ||
"blakejs": "^1.2.1", | ||
"keccak": "^3.0.2", | ||
@@ -41,15 +41,15 @@ "sha3": "^2.1.4" | ||
"@types/mocha": "^9.1.0", | ||
"@types/node": "^17.0.19", | ||
"@typescript-eslint/eslint-plugin": "^5.12.0", | ||
"@typescript-eslint/parser": "^5.12.0", | ||
"blakejs": "^1.1.1", | ||
"@types/node": "^17.0.23", | ||
"@typescript-eslint/eslint-plugin": "^5.16.0", | ||
"@typescript-eslint/parser": "^5.16.0", | ||
"blakejs": "^1.2.1", | ||
"browserify": "17.0.0", | ||
"chai": "^4.3.6", | ||
"eslint": "^8.9.0", | ||
"eslint": "^8.12.0", | ||
"eslint-plugin-no-loops": "~0.3.0", | ||
"keccak": "^3.0.2", | ||
"mocha": "^9.2.1", | ||
"mocha": "^9.2.2", | ||
"sha3": "^2.1.4", | ||
"ts-node": "^10.5.0", | ||
"typescript": "^4.5.5" | ||
"ts-node": "^10.7.0", | ||
"typescript": "^4.6.3" | ||
}, | ||
@@ -56,0 +56,0 @@ "resolutions": { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
47743
831