forked from digitalbazaar/vc-revocation-list
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.56 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
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
{
"name": "vc-revocation-list",
"version": "1.0.1-0",
"description": "Verifiable Credentials Revocation List 2020",
"license": "BSD-3-Clause",
"main": "index.js",
"scripts": {
"test": "npm run test-node",
"test-node": "cross-env NODE_ENV=test mocha -r esm --preserve-symlinks -t 30000 -A -R ${REPORTER:-spec} --require tests/test-mocha.js tests/*.spec.js",
"test-karma": "karma start karma.conf.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=text-lcov npm run test-node > coverage.lcov",
"coverage-report": "nyc report",
"lint": "eslint ."
},
"files": [
"Bitstring.js",
"RevocationList.js",
"index.js",
"main.js"
],
"dependencies": {
"base64url-universal": "^1.1.0",
"esm": "^3.2.25",
"jsonld-signatures": "^5.0.1",
"pako": "^1.0.11",
"vc-js": "^0.5.0"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-transform-modules-commonjs": "^7.4.3",
"@babel/plugin-transform-runtime": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/runtime": "^7.4.3",
"babel-loader": "^8.0.5",
"chai": "^4.2.0",
"chai-bytes": "^0.1.2",
"cross-env": "^5.2.0",
"eslint": "^6.8.0",
"eslint-config-digitalbazaar": "^2.0.0",
"karma": "^4.0.1",
"karma-babel-preprocessor": "^8.0.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^3.0.5",
"mocha": "^6.1.2",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.0.0",
"path-to-regexp": "^3.0.0",
"route-params": "^0.2.0",
"sinon": "^7.3.1",
"vc-revocation-list-context": "^1.0.0",
"webpack": "^4.29.6"
},
"repository": {
"type": "git",
"url": "https://github.com/digitalbazaar/vc-revocation-list"
},
"keywords": [
"vc",
"verifiable credential",
"revocation list",
"bitstring",
"RevocationList2020",
"VerifiableCredential"
],
"author": {
"name": "Digital Bazaar, Inc.",
"email": "support@digitalbazaar.com",
"url": "https://digitalbazaar.com/"
},
"bugs": {
"url": "https://github.com/digitalbazaar/vc-revocation-list/issues"
},
"homepage": "https://github.com/digitalbazaar/vc-revocation-list",
"module": "main.js",
"engines": {
"node": ">=12.0.0"
},
"nyc": {
"exclude": [
"tests"
],
"reporter": [
"html",
"text-summary",
"text-lcov"
]
}
}