forked from Vonage/vonage-node-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.24 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": "@vonage/server-sdk",
"author": "vonage",
"version": "2.10.2",
"main": "lib/Vonage",
"types": "./typings/index.d.ts",
"keywords": [
"sms",
"voice",
"vonage",
"verify",
"2fa",
"phone numbers"
],
"homepage": "https://github.com/vonage/vonage-node-sdk",
"repository": {
"type": "git",
"url": "git://github.com/vonage/vonage-node-sdk.git"
},
"description": "Vonage Server SDK for Node.js. API support for SMS, Voice Calls, Text-to-Speech, Numbers, Verify (2FA) and more.",
"contributors": [
"vonage",
"kellyjandrews",
"pvela",
"leggetter",
"akuzi",
"bpilot",
"justinfreitag",
"ecwyne",
"https://github.com/backhand"
],
"scripts": {
"compile": "./node_modules/.bin/babel -d lib src/ -s inline",
"test": "npm run test-no-lint",
"report-coverage": "cross-env NODE_ENV=test nyc --reporter=text-lcov mocha > coverage.lcov",
"test-coverage": "cross-env NODE_ENV=test nyc mocha",
"test-coverage-html": "cross-env NODE_ENV=test nyc --reporter html mocha",
"test-no-lint": "npm run compile && mocha --require ./node_modules/.bin/_mocha --require @babel/register ./test/*-test.js",
"test-watch": "nodemon --watch src --watch test -x 'npm run test-no-lint'",
"lint": "eslint src test",
"lint-fix": "eslint --fix src test",
"prepublish": "npm run compile",
"pretest": "npm run lint"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.10.5",
"@babel/plugin-proposal-object-rest-spread": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/register": "^7.10.5",
"babel-plugin-istanbul": "^6.0.0",
"babel-plugin-add-module-exports": "^1.0.4",
"bluebird": "^3.5.3",
"body-parser": "^1.18.3",
"chai": "^3.5.0",
"cross-env": "^7.0.2",
"dotenv": "^8.2.0",
"eslint": "^4.18",
"eslint-config-prettier": "^6.2",
"eslint-plugin-prettier": "^2.7",
"expect.js": "^0.3.1",
"mocha": "^7.2.0",
"nodemon": "^2.0.4",
"nyc": "^15.1.0",
"prettier": "^1.16.3",
"sinon": "^1.17.4",
"sinon-chai": "^2.8.0",
"sinon-expect": "^0.3.0"
},
"dependencies": {
"jsonwebtoken": "^8.4.0",
"request": "^2.88.2",
"uuid": "^8.3.0"
},
"license": "Apache 2.0"
}