-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
40 lines (40 loc) · 1.01 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
{
"name": "drachtio-mw-digest-auth",
"version": "0.3.2",
"description": "Performs SIP Digest-based authentication",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test node test/ | ./node_modules/.bin/tap-spec",
"coverage": "NODE_ENV=test ./node_modules/.bin/istanbul cover test/ --report html",
"jslint": "eslint lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davehorton/drachtio-mw-digest-auth.git"
},
"keywords": [
"drachtio",
"sip",
"auth",
"digest",
"RFC2617"
],
"author": "Dave Horton",
"license": "MIT",
"bugs": {
"url": "https://github.com/davehorton/drachtio-mw-digest-auth/issues"
},
"homepage": "https://github.com/davehorton/drachtio-mw-digest-auth#readme",
"dependencies": {
"nonce": "^1.0.4"
},
"devDependencies": {
"blue-tape": "^1.0.0",
"config": "^3.3.1",
"drachtio-srf": "^4.4.33",
"eslint": "^6.8.0",
"eslint-plugin-promise": "^4.2.1",
"nyc": "^15.0.1",
"tap-spec": "^5.0.0"
}
}