forked from digitalbazaar/ezcap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.45 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.45 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
{
"name": "@digitalcredentials/ezcap",
"version": "6.1.0",
"description": "",
"homepage": "https://github.com/digitalcredentials/ezcap",
"author": {
"name": "Digital Bazaar, Inc.",
"email": "support@digitalbazaar.com",
"url": "https://digitalbazaar.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/digitalcredentials/ezcap"
},
"bugs": {
"url": "https://github.com/digitalcredentials/ezcap/issues"
},
"license": "BSD-3-Clause",
"type": "module",
"exports": {
".": {
"types": "./types/index.d.ts",
"default": "./lib/index.js"
}
},
"types": "./types/index.d.ts",
"files": [
"lib/**/*.js",
"types/**/*.d.ts"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@digitalcredentials/http-client": "^5.0.4",
"@digitalbazaar/http-signature-zcap-invoke": "^6.1.0",
"@digitalbazaar/zcap": "^9.0.1",
"@digitalcredentials/jsonld-signatures": "^12.0.1",
"uuid": "^9.0.1"
},
"devDependencies": {
"@digitalbazaar/did-method-key": "^3.0.0",
"@digitalbazaar/ed25519-signature-2020": "^5.0.0",
"c8": "^8.0.1",
"chai": "^4.3.6",
"cross-env": "^7.0.3",
"eslint": "^8.17.0",
"eslint-config-digitalbazaar": "^5.0.1",
"eslint-plugin-jsdoc": "^46.9.1",
"eslint-plugin-unicorn": "^50.0.1",
"isomorphic-webcrypto": "^2.3.8",
"jsdoc": "^4.0.2",
"jsdoc-to-markdown": "^8.0.0",
"karma": "^6.3.20",
"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",
"mocha": "^10.0.0",
"mocha-lcov-reporter": "^1.3.0",
"webpack": "^5.73.0"
},
"c8": {
"reporter": [
"lcov",
"text-summary",
"text"
]
},
"engines": {
"node": ">=18"
},
"keywords": [
"Decentralized",
"Linked Data"
],
"scripts": {
"test": "npm run test-node",
"test-node": "cross-env NODE_ENV=test mocha --preserve-symlinks -t 10000 -r tests/node.js tests/**/*.spec.js",
"test-karma": "karma start tests/karma.conf.cjs",
"coverage": "cross-env NODE_ENV=test c8 npm run test-node",
"coverage-ci": "cross-env NODE_ENV=test c8 --reporter=lcovonly --reporter=text-summary --reporter=text npm run test-node",
"coverage-report": "c8 report",
"generate-readme": "jsdoc2md -t readme-template.hbs lib/*.js > README.md",
"lint": "eslint ."
}
}