-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.29 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
{
"version": "1.0.0",
"license": "MIT",
"sideEffects": false,
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"module": "dist/bandwidthlib-voice.esm.js",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"build": "tsdx build",
"testdx": "tsdx test",
"test": "tsdx test --passWithNoTests",
"lint": "tsdx lint src",
"prepare": "tsdx build"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "@bandwidth/voice",
"description": "Bandwidth's HTTP voice platform",
"author": "Bandwidth",
"devDependencies": {
"@types/detect-node": "^2.0.0",
"@types/lodash.flatmap": "^4.5.6",
"abort-controller": "^3.0.0",
"stream-equal": "^2.0.1",
"tsdx": "^0.14.1",
"tslib": "^2.0.3",
"typescript": "^3.9.7"
},
"dependencies": {
"@apimatic/core": "^0.7.6",
"@apimatic/schema": "^0.6.0",
"@types/node": "^14.18.21",
"axios": "^1.7.4",
"detect-node": "^2.0.4",
"form-data": "^3.0.0",
"lodash.flatmap": "^4.5.0",
"tiny-warning": "^1.0.3",
"xmlbuilder": "^15.1.1"
},
"jest": {
"moduleNameMapper": {
"axios": "axios/dist/node/axios.cjs"
}
},
"bugs": {
"email": "[email protected]"
}
}