-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.96 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.96 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
{
"name": "@digitalbazaar/http-digest-header",
"version": "2.3.1-0",
"description": "Minimal isomorphic library (Node.js and browser) for creating and verifying Digest headers for HTTP Signatures",
"license": "BSD-3-Clause",
"scripts": {
"test": "npm run test-node",
"test-node": "cross-env NODE_ENV=test mocha --preserve-symlinks -t 10000 --require test/test-mocha.js test/**/*.spec.js",
"test-karma": "karma start test/karma.conf.cjs",
"coverage": "cross-env NODE_ENV=test c8 npm test",
"coverage-ci": "cross-env NODE_ENV=test c8 --reporter=lcovonly --reporter=text-summary --reporter=text npm test",
"coverage-report": "c8 report",
"lint": "eslint ."
},
"type": "module",
"exports": "./lib/index.js",
"browser": {
"./lib/util.js": "./lib/util-browser.js"
},
"files": [
"lib/**/*.js"
],
"devDependencies": {
"c8": "^10.1.3",
"chai": "^4.3.6",
"cross-env": "^10.1.0",
"eslint": "^8.57.1",
"eslint-config-digitalbazaar": "^5.2.0",
"eslint-plugin-jsdoc": "^50.8.0",
"eslint-plugin-unicorn": "^56.0.1",
"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.3.8",
"karma-webpack": "^5.0.0",
"mocha": "^11.7.4",
"mocha-lcov-reporter": "^1.3.0",
"webpack": "^5.73.0"
},
"repository": {
"type": "git",
"url": "https://github.com/digitalbazaar/http-digest-header"
},
"keywords": [
"http",
"signatures",
"digest"
],
"author": {
"name": "Digital Bazaar, Inc.",
"email": "support@digitalbazaar.com",
"url": "https://digitalbazaar.com/"
},
"bugs": {
"url": "https://github.com/digitalbazaar/http-digest-header/issues"
},
"homepage": "https://github.com/digitalbazaar/http-digest-header",
"engines": {
"node": ">=20"
},
"c8": {
"reporter": [
"lcov",
"text-summary",
"text"
]
}
}