UNPKG

2.13 kBJSONView Raw
1{
2 "name": "nexmo",
3 "author": "nexmo",
4 "version": "2.3.2",
5 "main": "lib/Nexmo",
6 "keywords": [
7 "sms",
8 "voice",
9 "nexmo",
10 "verify",
11 "2fa",
12 "phone numbers"
13 ],
14 "homepage": "https://github.com/nexmo/nexmo-node",
15 "repository": {
16 "type": "git",
17 "url": "git://github.com/nexmo/nexmo-node.git"
18 },
19 "description": "Nexmo REST API client for Node.js. API support for SMS, Voice Calls, Text-to-Speech, Numbers, Verify (2FA) and more.",
20 "contributors": [
21 "nexmo",
22 "pvela",
23 "leggetter",
24 "akuzi",
25 "bpilot",
26 "justinfreitag",
27 "ecwyne",
28 "https://github.com/backhand"
29 ],
30 "scripts": {
31 "compile": "./node_modules/.bin/babel -d lib src/ -s inline",
32 "test": "npm run test-no-lint",
33 "test-coverage": "cross-env NODE_ENV=test nyc mocha",
34 "test-coverage-html": "cross-env NODE_ENV=test nyc --reporter html mocha",
35 "test-no-lint": "npm run compile && mocha --compilers ./node_modules/.bin/_mocha --compilers js:babel-register ./test/*-test.js",
36 "test-watch": "nodemon --watch src --watch test -x 'npm run test-no-lint'",
37 "lint": "eslint src test",
38 "lint-fix": "eslint --fix src test",
39 "prepublish": "npm run compile",
40 "pretest": "npm run lint"
41 },
42 "devDependencies": {
43 "babel-cli": "^6.7.7",
44 "babel-plugin-add-module-exports": "^0.2.1",
45 "babel-plugin-istanbul": "^4.1.6",
46 "babel-plugin-transform-object-rest-spread": "^6.26.0",
47 "babel-preset-es2015": "^6.9.0",
48 "babel-register": "^6.7.2",
49 "bluebird": "^3.4.6",
50 "body-parser": "^1.15.2",
51 "chai": "^3.5.0",
52 "cross-env": "^5.1.1",
53 "dotenv": "^2.0.0",
54 "eslint": "^3.18",
55 "eslint-config-prettier": "^2.9.0",
56 "eslint-plugin-prettier": "^2.3.1",
57 "expect.js": "^0.3.1",
58 "express": "^4.14.0",
59 "mocha": "^5.2.0",
60 "ngrok": "^2.2.2",
61 "nodemon": "^1.17.5",
62 "nyc": "^13.0.0",
63 "prettier": "^1.12.1",
64 "sinon": "^1.17.4",
65 "sinon-chai": "^2.8.0",
66 "sinon-expect": "^0.3.0"
67 },
68 "dependencies": {
69 "jsonwebtoken": "^8.2.1",
70 "request": "^2.83.0",
71 "uuid": "^2.0.2"
72 },
73 "license": "MIT"
74}