zeyra 1.0.0 → 1.0.1
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/package.json +12 -4
package/package.json
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "zeyra",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "WebCrypto helper for generating JWK keysets plus AES-GCM encryption and ECDSA signing agents.",
|
|
5
|
-
"main": "src/index.js",
|
|
6
5
|
"keywords": [
|
|
7
6
|
"webcrypto",
|
|
8
7
|
"aes-gcm",
|
|
@@ -13,13 +12,22 @@
|
|
|
13
12
|
],
|
|
14
13
|
"license": "MIT",
|
|
15
14
|
"type": "module",
|
|
15
|
+
"main": "src/index.js",
|
|
16
16
|
"scripts": {
|
|
17
|
-
"test": "node --test test.js",
|
|
17
|
+
"test": "node --test test.js && node test.js --bench",
|
|
18
18
|
"bench": "node test.js --bench",
|
|
19
19
|
"prepublishOnly": "npm test"
|
|
20
20
|
},
|
|
21
|
+
"repository": {
|
|
22
|
+
"type": "git",
|
|
23
|
+
"url": "git+https://github.com/jortsupetterson/zeyra.git"
|
|
24
|
+
},
|
|
25
|
+
"bugs": {
|
|
26
|
+
"url": "https://github.com/jortsupetterson/zeyra/issues"
|
|
27
|
+
},
|
|
28
|
+
"homepage": "https://github.com/jortsupetterson/zeyra#readme",
|
|
21
29
|
"dependencies": {
|
|
22
|
-
"bytecodec": "^1.1
|
|
30
|
+
"bytecodec": "^1.2.1"
|
|
23
31
|
},
|
|
24
32
|
"engines": {
|
|
25
33
|
"node": ">=18"
|