-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.25 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "@sunbird-rc/verification-sdk",
"version": "0.2.0",
"description": "An SDK to verify Sunbird generated Verifiable Credentials",
"main": "./lib/index.js",
"type": "module",
"scripts": {
"test": "mocha --reporter spec test/*.spec.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sunbird-RC/verification-sdk.git"
},
"keywords": [
"W3C VC",
"Verifiable Credentials",
"Sunbird-RC"
],
"author": "Prasanna Sambandam Raghu <prasanna@beehyv.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Sunbird-RC/verification-sdk/issues"
},
"homepage": "https://github.com/Sunbird-RC/verification-sdk#readme",
"files": [
"./lib/**/*.js"
],
"exports": "./lib/index.js",
"engines": {
"node": ">=16"
},
"devDependencies": {
"chai": "^5.1.0",
"mocha": "^10.3.0"
},
"dependencies": {
"@digitalbazaar/ed25519-signature-2018": "^4.0.0",
"@digitalbazaar/ed25519-signature-2020": "^5.2.0",
"@digitalbazaar/ed25519-verification-key-2018": "^4.0.0",
"@digitalbazaar/ed25519-verification-key-2020": "^4.1.0",
"@digitalbazaar/vc": "^6.2.0",
"crypto-ld": "^7.0.0",
"did-resolver": "^4.1.0",
"jsonld": "^8.3.2",
"jsonld-signatures": "^11.2.1"
}
}