-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
55 lines (55 loc) · 1.62 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
{
"name": "digest-fetch",
"version": "3.1.1",
"description": "digest auth request plugin for fetch/node-fetch also support http basic auth authentication",
"main": "digest-fetch-src.js",
"scripts": {
"lint": "eslint --ext js,md .",
"test": "mocha --check-leaks --bail --no-exit --reporter spec test/digest-*",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --check-leaks --no-exit --reporter dot test/",
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --check-leaks --no-exit --reporter spec test/",
"declare": "tsc digest-fetch-src.js --allowJs --emitDeclarationOnly --declaration"
},
"keywords": [
"digest",
"auth",
"fetch",
"node-fetch",
"http",
"basic",
"authentication"
],
"author": "[email protected]",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/devfans/digest-fetch.git"
},
"exports": {
"types": "./digest-fetch-src.d.ts",
"default": "./digest-fetch-src.js"
},
"devDependencies": {
"@types/node": "^18.15.11",
"after": "^0.8.2",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"eslint": "^7.26.0",
"eslint-plugin-markdown": "^3.0.1",
"express": "^4.17.1",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^9.2.2",
"node-fetch": "^3.3.1",
"passport": "^0.6.0",
"passport-digest": "^0.1.0",
"serialize-javascript": "^3.1.0"
},
"homepage": "https://github.com/devfans/digest-fetch#readme",
"dependencies": {
"base-64": "^0.1.0",
"js-sha256": "^0.9.0",
"js-sha512": "^0.8.0",
"md5": "^2.3.0"
},
"type": "module"
}