-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.01 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
{
"name": "bandwidth-sdk",
"version": "1.0.0-dev",
"description": "OpenAPI client for bandwidth-sdk",
"author": "OpenAPI-Generator Contributors",
"repository": {
"type": "git",
"url": "git+https://github.com/Bandwidth/node-sdk.git"
},
"keywords": [
"axios",
"typescript",
"openapi-client",
"openapi-generator",
"bandwidth-sdk"
],
"license": "Unlicense",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"scripts": {
"build": "tsc ",
"prepare": "npm run build",
"test-unit": "jest --coverage --detectOpenHandles --testPathPattern=tests/unit",
"test-smoke": "jest --coverage --detectOpenHandles --testPathPattern=tests/smoke",
"test": "jest --coverage --detectOpenHandles"
},
"dependencies": {
"axios": "^1.7.2",
"xmlbuilder2": "^3.1.1"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^12.11.5",
"jest": "^29.7.0",
"jest-extended": "^4.0.2",
"ts-jest": "^29.1.1",
"typescript": "^5.0"
}
}