forked from team-telnyx/telnyx-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.65 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
{
"name": "telnyx",
"version": "1.11.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": [
"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/)"
],
"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.1.2",
"chai-as-promised": "~7.1.1",
"coveralls": "^3.0.0",
"debug": "^4.1.1",
"eslint": "^4.19.1",
"eslint-plugin-chai-friendly": "^0.4.0",
"mocha": "~5.0.5",
"nock": "^9.0.0",
"nyc": "^14.1.1"
},
"dependencies": {
"lodash.isplainobject": "^4.0.6",
"qs": "^6.6.0",
"safe-buffer": "^5.1.1",
"tweetnacl": "^1.0.1",
"uuid": "^3.3.2"
},
"license": "MIT",
"scripts": {
"clean": "rm -rf ./.nyc_output ./node_modules/.cache ./coverage",
"mocha": "nyc mocha",
"test": "npm run lint && npm run mocha",
"lint": "eslint .",
"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"
]
}
}