forked from digitalbazaar/vc
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.77 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.77 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@digitalcredentials/vc",
"version": "10.0.2",
"description": "Verifiable Credentials JavaScript library.",
"homepage": "https://github.com/digitalcredentials/vc",
"repository": {
"type": "git",
"url": "https://github.com/digitalcredentials/vc"
},
"license": "BSD-3-Clause",
"type": "module",
"exports": "./lib/index.js",
"files": [
"lib",
"README.md",
"LICENSE"
],
"dependencies": {
"@digitalcredentials/credentials-v2-context": "^0.0.1-beta.0",
"@digitalcredentials/jsonld": "^9.0.0",
"@digitalcredentials/jsonld-signatures": "^12.0.1",
"@digitalcredentials/open-badges-context": "^2.1.0",
"credentials-context": "^2.0.0",
"ed25519-signature-2018-context": "^1.1.0"
},
"devDependencies": {
"@digitalbazaar/credentials-examples-context": "^1.0.0",
"@digitalbazaar/data-integrity": "^2.0.0",
"@digitalbazaar/data-integrity-context": "^2.0.0",
"@digitalbazaar/ecdsa-multikey": "^1.6.0",
"@digitalbazaar/ecdsa-sd-2023-cryptosuite": "^3.0.0",
"@digitalbazaar/ed25519-signature-2018": "^4.0.0",
"@digitalbazaar/ed25519-verification-key-2018": "^4.0.0",
"@digitalbazaar/multikey-context": "^1.0.0",
"@digitalbazaar/odrl-context": "^1.0.0",
"@npmcli/package-json": "^5.0.0",
"chai": "^4.3.7",
"cross-env": "^7.0.3",
"did-context": "^3.1.1",
"did-veres-one": "^16.0.0",
"eslint": "^8.53.0",
"eslint-config-digitalbazaar": "^5.0.1",
"eslint-plugin-jsdoc": "^46.9.0",
"eslint-plugin-unicorn": "^49.0.0",
"karma": "^6.4.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.1",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.4.0",
"karma-webpack": "^5.0.0",
"klona": "^2.0.6",
"mocha": "^10.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.1.0",
"rimraf": "^5.0.5",
"uuid": "^9.0.0",
"veres-one-context": "^12.0.0",
"webpack": "^5.75.0"
},
"nyc": {
"exclude": [
"test"
],
"reporter": [
"html",
"text-summary"
]
},
"browser": {
"Buffer": false,
"crypto": false,
"util": false
},
"engines": {
"node": ">=18"
},
"keywords": [
"JSON",
"Linked Data",
"JSON-LD",
"RDF",
"Semantic Web",
"Verifiable Claim",
"Credential"
],
"scripts": {
"test": "npm run test-node",
"test-node": "cross-env NODE_ENV=test mocha --preserve-symlinks -t 10000 test/*.spec.js",
"test-karma": "karma start karma.conf.cjs",
"lint": "eslint 'lib/**/*.js' 'test/**/*.js'",
"coverage": "cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text-summary npm run test-node",
"coverage-ci": "cross-env NODE_ENV=test nyc --reporter=lcovonly npm run test-node",
"coverage-report": "nyc report"
}
}