forked from Vonage/vonage-node-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.61 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.61 KB
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
{
"name": "nexmo",
"author": "nexmo",
"version": "1.2.0",
"main": "lib/Nexmo",
"keywords": [
"sms",
"voice",
"nexmo",
"verify",
"2fa",
"phone numbers"
],
"homepage": "https://github.com/nexmo/nexmo-node",
"repository": {
"type": "git",
"url": "git://github.com/nexmo/nexmo-node.git"
},
"description": "Nexmo REST API client for Node.js. API support for SMS, Voice Calls, Text-to-Speech, Numbers, Verify (2FA) and more.",
"contributors": [
"nexmo",
"pvela",
"leggetter",
"akuzi",
"bpilot",
"justinfreitag",
"ecwyne",
"https://github.com/backhand"
],
"scripts": {
"compile": "./node_modules/.bin/babel -d lib src/ -s inline",
"prepublish": "npm run compile",
"test": "npm run-script test-no-lint",
"test-no-lint": "npm run compile && mocha --compilers ./node_modules/.bin/_mocha --compilers js:babel-register ./test/*-test.js",
"test-watch": "nodemon --watch src --watch test -x 'npm run-script test-no-lint'",
"pretest": "eslint test"
},
"devDependencies": {
"babel-cli": "^6.7.7",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.9.0",
"babel-register": "^6.7.2",
"bluebird": "^3.4.6",
"body-parser": "^1.15.2",
"chai": "^3.5.0",
"dotenv": "^2.0.0",
"eslint": "^2",
"expect.js": "^0.3.1",
"express": "^4.14.0",
"mocha": "^2.4.5",
"ngrok": "^2.2.2",
"nodemon": "^1.10.2",
"sinon": "^1.17.4",
"sinon-chai": "^2.8.0",
"sinon-expect": "^0.3.0"
},
"dependencies": {
"jsonwebtoken": "^7.1.9",
"uuid": "^2.0.2"
},
"license": "MIT"
}