@digitaldefiance/ecies-lib 2.1.25 → 2.1.30

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +4 -0
  2. package/package.json +6 -2
package/README.md CHANGED
@@ -643,6 +643,10 @@ const passwordLogin = new PasswordLoginService(ecies, pbkdf2);
643
643
 
644
644
  ## ChangeLog
645
645
 
646
+ ## v2.1.30 - Alignment bump
647
+
648
+ ## v2.1.26 - use new express-suite-test-utils
649
+
646
650
  ## v2.1.25 - Upgrade i18n, mostly testing improvements
647
651
 
648
652
  ## v2.1.17 - Add frontend member mock
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@digitaldefiance/ecies-lib",
3
- "version": "2.1.25",
3
+ "version": "2.1.30",
4
4
  "description": "Digital Defiance ECIES Library",
5
5
  "main": "src/index.js",
6
6
  "types": "src/index.d.ts",
@@ -11,6 +11,7 @@
11
11
  "test": "npx nx test digitaldefiance-ecies-lib",
12
12
  "test:stream": "npx nx test --outputStyle=stream digitaldefiance-ecies-lib",
13
13
  "test:logged": "npx nx test --outputStyle=stream digitaldefiance-ecies-lib 2>&1 | ansifilter -o test.log",
14
+ "test:coverage": "npx jest --coverage --testPathPattern=digitaldefiance-ecies-lib --coverageReporters=text",
14
15
  "lint": "npx nx lint digitaldefiance-ecies-lib",
15
16
  "lint:fix": "npx nx lint digitaldefiance-ecies-lib --fix",
16
17
  "prettier:check": "prettier --check 'src/**/*.{ts,tsx}'",
@@ -34,7 +35,7 @@
34
35
  "license": "MIT",
35
36
  "packageManager": "yarn@4.10.3",
36
37
  "dependencies": {
37
- "@digitaldefiance/i18n-lib": "2.1.25",
38
+ "@digitaldefiance/i18n-lib": "2.1.30",
38
39
  "@ethereumjs/wallet": "^10.0.0",
39
40
  "@noble/curves": "^2.0.1",
40
41
  "@noble/hashes": "^2.0.1",
@@ -42,5 +43,8 @@
42
43
  "bson": "^6.10.4",
43
44
  "ts-brand": "^0.2.0"
44
45
  },
46
+ "devDependencies": {
47
+ "@digitaldefiance/express-suite-test-utils": "1.0.6"
48
+ },
45
49
  "type": "commonjs"
46
50
  }