-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
50 lines (50 loc) · 1.53 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
{
"name": "@babblevoice/babble-drachtio-registrar",
"version": "1.5.4",
"description": "A simple registrar for use with drachtio sip server",
"main": "index.js",
"scripts": {
"code": "./node_modules/mocha/bin/mocha --watch --recursive",
"test": "./node_modules/mocha/bin/mocha --recursive --check-leaks",
"docs": "jsdoc -c docs/conf.json -d docs README.md index.js lib/",
"check": "tsc --checkJs --noEmit --target es6 --module commonjs --skipLibCheck *.js test/**/*.js lib/*.js; ./node_modules/eslint/bin/eslint.js ./"
},
"author": "Nick Knight <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/tinpotnick/babble-drachtio-registrar.git"
},
"keywords": [
"sip",
"drachtio",
"auth",
"registrar"
],
"license": "MIT",
"dependencies": {
"@babblevoice/babble-drachtio-auth": "^1.0.1",
"drachtio-srf": "^4.4.47",
"uuid": "^8.3.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.50.0",
"chai": "^4.3.4",
"eslint": "^8.33.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"jsdoc": "^4.0.2",
"mocha": "^9.1.3",
"typescript": "^4.9.5"
},
"bugs": {
"url": "https://github.com/tinpotnick/babble-drachtio-registrar/issues"
},
"homepage": "https://github.com/tinpotnick/babble-drachtio-registrar#readme",
"directories": {
"doc": "docs",
"lib": "lib",
"test": "test"
}
}