-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
76 lines (76 loc) · 2.14 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
{
"name": "telnyx",
"version": "2.0.0",
"description": "Telnyx API Node SDK",
"keywords": [
"telnyx",
"sms",
"sip trunking",
"phone numbers",
"api",
"sdk"
],
"homepage": "https://developers.telnyx.com",
"author": "Telnyx <[email protected]> (https://telnyx.com)",
"contributors": [
"Vlad Ionash <[email protected]> (http://telnyx.com)",
"Gabriel Taylor Russ <[email protected]> (http://telnyx.com)",
"Lucas Rosa <[email protected]> (http://telnyx.com)",
"Rômulo Garofalo <[email protected]> (http://telnyx.com)",
"Khalil Mohammad <[email protected]> (https://khalilmohammadmirza.com)"
],
"repository": {
"type": "git",
"url": "git://github.com/team-telnyx/telnyx-node.git"
},
"bugs": "https://github.com/team-telnyx/telnyx-node/issues",
"engines": {
"node": "^18 || >=20"
},
"main": "dist/telnyx.node.js",
"type": "module",
"types": "dist/types/index.d.ts",
"devDependencies": {
"@eslint/js": "^9.10.0",
"@stoplight/prism-cli": "^5.10.0",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.13",
"@types/node": "^22.7.3",
"@types/qs": "^6.9.15",
"debug": "^4.3.4",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-chai-friendly": "^0.7.4",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"nock": "^13.5.4",
"nyc": "^15.1.0",
"plop": "^4.0.1",
"prettier": "^3.0.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.2",
"typescript-eslint": "^8.8.0"
},
"dependencies": {
"qs": "^6.13.0",
"tweetnacl": "^1.0.3",
"uuid": "^9.0.1"
},
"overrides": {
"node-plop": {
"inquirer": "9.3.5"
}
},
"license": "MIT",
"scripts": {
"prebuild": "rm -rf ./dist",
"build": "tsc && cp -r types dist/types",
"clean": "rm -rf ./.nyc_output ./node_modules/.cache ./coverage ./dist",
"prepack": "npm install && npm run build",
"test": "jest",
"generate": "plop",
"lint": "rm -rf ./dist && eslint .",
"fix": "npm run lint --fix"
}
}