forked from open-voip-alliance/WebphoneLib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.34 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "webphone-lib",
"version": "0.2.5",
"description": "Webphone Lib",
"author": "Open VoIP Alliance",
"license": "MIT",
"main": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rm -fR dist/* build/*",
"build": "npm run clean && rollup -c",
"build-watch": "npm run clean && rollup -cw",
"serve": "serve -l 1235",
"demo": "run-p build-watch serve",
"typecheck": "tsc",
"lint": "tslint src/**/*.ts",
"prepare": "npm run lint && npm run build",
"test": "ava",
"test-coverage": "nyc ava",
"test-watch": "ava --watch",
"docs": "typedoc --out docs src"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"ava": {
"require": [
"esm",
"ts-node/register",
"./test/_setup-browser-env.js"
],
"extensions": [
"ts"
],
"babel": false,
"compileEnhancements": false
},
"nyc": {
"require": [
"ts-node/register"
],
"extends": "@istanbuljs/nyc-config-typescript",
"all": true,
"check-coverage": true,
"include": [
"src/**/*.ts"
]
},
"repository": {
"type": "git",
"url": "[email protected]:open-voip-alliance/WebphoneLib.git"
},
"files": [
"src",
"dist",
"test",
"README.md"
],
"dependencies": {
"p-retry": "^4.1.0",
"p-timeout": "^3.2.0",
"sip.js": "0.15.10"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^0.1.3",
"@types/sinon": "^7.5.0",
"@typescript-eslint/parser": "^2.7.0",
"ava": "^2.4.0",
"ava-fast-check": "^1.1.2",
"base": "^0.13.2",
"browser-env": "^3.2.6",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-prettier": "^3.1.1",
"fast-check": "^1.17.0",
"husky": "^3.0.8",
"npm-run-all": "^4.1.5",
"nyc": "^14.1.1",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"rollup": "^1.23.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript2": "^0.24.3",
"serve": "^11.2.0",
"sinon": "^7.5.0",
"ts-node": "^8.4.1",
"tslint": "^5.20.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typedoc": "^0.15.0",
"typescript": "^3.6.3"
}
}