@verii/verii-issuing 1.0.0-pre.1756096826 → 1.0.0-pre.1756224043

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@verii/verii-issuing",
3
- "version": "1.0.0-pre.1756096826",
3
+ "version": "1.0.0-pre.1756224043",
4
4
  "description": "Verii Issuing Package",
5
5
  "repository": "https://github.com/LFDT-Verii/core",
6
6
  "main": "src/index.js",
@@ -9,30 +9,32 @@
9
9
  "access": "public"
10
10
  },
11
11
  "scripts": {
12
- "test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --config ./jest.config.js --runInBand --coverage",
13
- "lint": "eslint . --format json >> eslint.json",
12
+ "test": "cross-env NODE_ENV=test node --test --test-concurrency=1 --experimental-test-module-mocks --experimental-test-coverage --test-reporter=spec --test-reporter-destination=stdout 'test/**/*.test.js'",
13
+ "test:ci": "cross-env NODE_ENV=test node --test --test-concurrency=1 --experimental-test-module-mocks --experimental-test-coverage --test-coverage-include='src/**' --test-reporter=spec --test-reporter=junit --test-reporter-destination=stdout --test-reporter-destination=test-results.junit.xml --test-reporter=lcov --test-reporter-destination=lcov.info 'test/**/*.test.js'",
14
+ "lint": "eslint --ext .js .",
15
+ "lint:ci": "eslint . --format json >> eslint-results.json",
14
16
  "lint:fix": "eslint --fix --ext .js ."
15
17
  },
16
18
  "author": "Andres Olave",
17
19
  "license": "Apache-2.0",
18
20
  "dependencies": {
19
- "@verii/blockchain-functions": "1.0.0-pre.1756096826",
20
- "@verii/common-functions": "1.0.0-pre.1756096826",
21
- "@verii/crypto": "1.0.0-pre.1756096826",
22
- "@verii/did-doc": "1.0.0-pre.1756096826",
23
- "@verii/jwt": "1.0.0-pre.1756096826",
24
- "@verii/metadata-registration": "1.0.0-pre.1756096826",
25
- "@verii/vc-checks": "1.0.0-pre.1756096826",
21
+ "@verii/blockchain-functions": "1.0.0-pre.1756224043",
22
+ "@verii/common-functions": "1.0.0-pre.1756224043",
23
+ "@verii/crypto": "1.0.0-pre.1756224043",
24
+ "@verii/did-doc": "1.0.0-pre.1756224043",
25
+ "@verii/jwt": "1.0.0-pre.1756224043",
26
+ "@verii/metadata-registration": "1.0.0-pre.1756224043",
27
+ "@verii/vc-checks": "1.0.0-pre.1756224043",
26
28
  "canonicalize": "2.1.0",
27
29
  "eth-url-parser": "1.0.4",
28
30
  "fast-shuffle": "6.1.1",
29
31
  "lodash": "^4.17.21"
30
32
  },
31
33
  "devDependencies": {
32
- "@verii/contract-permissions": "1.0.0-pre.1756096826",
33
- "@verii/request": "1.0.0-pre.1756096826",
34
- "@verii/test-regexes": "1.0.0-pre.1756096826",
35
- "@verii/tests-helpers": "1.0.0-pre.1756096826",
34
+ "@verii/contract-permissions": "1.0.0-pre.1756224043",
35
+ "@verii/request": "1.0.0-pre.1756224043",
36
+ "@verii/test-regexes": "1.0.0-pre.1756224043",
37
+ "@verii/tests-helpers": "1.0.0-pre.1756224043",
36
38
  "eslint": "8.57.1",
37
39
  "eslint-config-airbnb-base": "14.2.1",
38
40
  "eslint-config-prettier": "8.10.2",
@@ -43,7 +45,7 @@
43
45
  "eslint-plugin-prefer-arrow-functions": "3.6.2",
44
46
  "eslint-plugin-prettier": "4.2.5",
45
47
  "eslint-watch": "7.0.0",
46
- "jest": "29.7.0",
48
+ "expect": "29.7.0",
47
49
  "mongodb": "6.18.0",
48
50
  "nanoid": "3.3.11",
49
51
  "prettier": "2.8.8",
@@ -54,5 +56,5 @@
54
56
  "lib"
55
57
  ]
56
58
  },
57
- "gitHead": "7f7dc1af30929dd31608d446ca6bd98cd83e8294"
59
+ "gitHead": "21747614a1db416654bba4c198d1c1b883dbe6a5"
58
60
  }
@@ -20,8 +20,7 @@ const {
20
20
  ALG_TYPE,
21
21
  } = require('@verii/metadata-registration');
22
22
  const { jsonLdToUnsignedVcJwtContent, hexFromJwk } = require('@verii/jwt');
23
- const { initCallWithKmsKey } = require('@verii/crypto');
24
- const { KeyAlgorithms } = require('@verii/crypto/src/constants');
23
+ const { KeyAlgorithms, initCallWithKmsKey } = require('@verii/crypto');
25
24
  const { buildIssuerVcUrl } = require('./build-issuer-vc-url');
26
25
 
27
26
  /** @import { Issuer, CredentialMetadata, Context } from "../../types/types" */