-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1005 Bytes
/
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
{
"name": "drachtio-basic-registrar",
"version": "0.0.1",
"main": "app.js",
"engines": {
"node": ">= 8.10.0"
},
"keywords": [
"sip",
"drachtio"
],
"author": "Dave Horton",
"license": "MIT",
"scripts": {
"start": "node app",
"test": "NODE_ENV=test node test/ | ./node_modules/.bin/tap-spec",
"coverage": "NODE_ENV=test ./node_modules/.bin/nyc cover test/ --report html",
"jslint": "eslint app.js lib"
},
"dependencies": {
"bluebird": "^3.7.2",
"clear-require": "^3.0.0",
"config": "^3.3.1",
"debug": "^4.1.1",
"drachtio-fsmrf": "^2.0.1",
"drachtio-mw-digest-auth": "^0.3.3",
"drachtio-mw-registration-parser": "^0.1.0",
"drachtio-srf": "^4.4.36",
"nyc": "^15.1.0",
"pino": "^6.3.2",
"redis": "^3.0.2",
"rtpengine-client": "^0.1.1"
},
"devDependencies": {
"blue-tape": "^1.0.0",
"eslint": "^5.16.0",
"eslint-plugin-promise": "^4.1.1",
"tap-dot": "^2.0.0",
"tap-spec": "^5.0.0"
}
}