-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.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
{
"version": "1.0.0",
"license": "MIT",
"sideEffects": false,
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"homepage": "https://github.com/Bandwidth/node-webrtc",
"module": "dist/webrtc.esm.js",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10.4.0"
},
"scripts": {
"build": "tsdx build",
"test": "tsdx test --passWithNoTests",
"lint": "tsdx lint src",
"prepare": "tsdx build"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "@bandwidth/webrtc",
"description": "Bandwidth WebRTC API",
"author": "Bandwidth Edge Services",
"devDependencies": {
"@types/detect-node": "^2.0.0",
"@types/json-bigint": "^1.0.0",
"@types/lodash.flatmap": "^4.5.6",
"abort-controller": "^3.0.0",
"stream-equal": "^2.0.1",
"tsdx": "^0.14.1",
"tslib": "^2.1.0",
"typescript": "^3.9.7"
},
"dependencies": {
"@apimatic/core": "^0.6.1",
"@apimatic/schema": "^0.6.0",
"@babel/preset-env": "^7.13.15",
"axios": "^0.27.2",
"detect-node": "^2.0.4",
"form-data": "^3.0.0",
"json-bigint": "^1.0.0",
"lodash.flatmap": "^4.5.0",
"tiny-warning": "^1.0.3"
},
"bugs": {
"url": "https://github.com/Bandwidth/node-webrtc/issues",
"email": "[email protected]"
}
}