forked from team-telnyx/telnyx-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.9 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
{
"name": "telnyx",
"version": "1.27.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://www.telnyx.com/)",
"contributors": [
"Vlad Ionash <[email protected]> (http://www.telnyx.com/)",
"Gabriel Taylor Russ <[email protected]> (http://www.telnyx.com/)",
"Lucas Rosa <[email protected]> (http://www.telnyx.com/)",
"Rômulo Garofalo <[email protected]> (http://www.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": "^6 || >=8"
},
"main": "lib/telnyx.js",
"devDependencies": {
"chai": "~4.4.1",
"chai-as-promised": "~7.1.1",
"coveralls": "^3.1.1",
"debug": "^4.3.4",
"eslint": "^8.57.0",
"eslint-plugin-chai-friendly": "^0.7.4",
"mocha": "^10.3.0",
"nock": "^13.5.4",
"nyc": "^15.1.0"
},
"dependencies": {
"lodash.isplainobject": "^4.0.6",
"qs": "^6.11.2",
"safe-buffer": "^5.2.1",
"telnyx": "^1.26.2",
"tweetnacl": "^1.0.3",
"uuid": "^9.0.1"
},
"license": "MIT",
"scripts": {
"clean": "rm -rf ./.nyc_output ./node_modules/.cache ./coverage",
"mocha": "nyc mocha",
"test": "npm run lint && npm run mocha",
"lint": "eslint . --fix",
"report": "nyc -r text -r lcov report",
"coveralls": "cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"release": "telnyx-npm-release"
},
"nyc": {
"exclude": [
"testUtils/**/*",
"test/**/*",
"lib/TelnyxMethod.basic.js"
]
}
}