@digitaldefiance/node-ecies-lib 2.1.25 → 2.1.27
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.
- package/README.md +8 -0
- package/package.json +6 -2
package/README.md
CHANGED
|
@@ -414,6 +414,14 @@ No performance regression in v2.0:
|
|
|
414
414
|
|
|
415
415
|
## ChangeLog
|
|
416
416
|
|
|
417
|
+
## Version 2.1.27
|
|
418
|
+
|
|
419
|
+
- Bump ecies lib version
|
|
420
|
+
|
|
421
|
+
## Version 2.1.26
|
|
422
|
+
|
|
423
|
+
- Use new express-suite-test-utils
|
|
424
|
+
|
|
417
425
|
## Version 2.1.25
|
|
418
426
|
|
|
419
427
|
- Improve test coverage
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@digitaldefiance/node-ecies-lib",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.27",
|
|
4
4
|
"description": "Digital Defiance Node 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-node-ecies-lib",
|
|
12
12
|
"test:stream": "npx nx test --outputStyle=stream digitaldefiance-node-ecies-lib",
|
|
13
13
|
"test:logged": "npx nx test --outputStyle=stream digitaldefiance-node-ecies-lib 2>&1 | ansifilter -o test.log",
|
|
14
|
+
"test:coverage": "npx jest --coverage --testPathPattern=digitaldefiance-node-ecies-lib --coverageReporters=text",
|
|
14
15
|
"lint": "npx nx lint digitaldefiance-node-ecies-lib",
|
|
15
16
|
"lint:fix": "npx nx lint digitaldefiance-node-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/ecies-lib": "2.1.
|
|
38
|
+
"@digitaldefiance/ecies-lib": "2.1.26",
|
|
38
39
|
"@digitaldefiance/i18n-lib": "2.1.25",
|
|
39
40
|
"@ethereumjs/wallet": "^10.0.0",
|
|
40
41
|
"@noble/curves": "^2.0.1",
|
|
@@ -44,5 +45,8 @@
|
|
|
44
45
|
"ethereum-cryptography": "^3.2.0",
|
|
45
46
|
"ts-brand": "^0.2.0"
|
|
46
47
|
},
|
|
48
|
+
"devDependencies": {
|
|
49
|
+
"@digitaldefiance/express-suite-test-utils": "1.0.3"
|
|
50
|
+
},
|
|
47
51
|
"type": "commonjs"
|
|
48
52
|
}
|