UNPKG

2.07 kBJSONView Raw
1{
2 "name": "nexmo",
3 "author": "nexmo",
4 "version": "2.2.0",
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.5",
46 "babel-preset-es2015": "^6.9.0",
47 "babel-register": "^6.7.2",
48 "bluebird": "^3.4.6",
49 "body-parser": "^1.15.2",
50 "chai": "^3.5.0",
51 "cross-env": "^5.1.1",
52 "dotenv": "^2.0.0",
53 "eslint": "^3.18",
54 "eslint-config-prettier": "^2.9.0",
55 "eslint-plugin-prettier": "^2.3.1",
56 "expect.js": "^0.3.1",
57 "express": "^4.14.0",
58 "mocha": "^3.2.0",
59 "ngrok": "^2.2.2",
60 "nodemon": "^1.10.2",
61 "nyc": "^11.3.0",
62 "prettier": "^1.8.2",
63 "sinon": "^1.17.4",
64 "sinon-chai": "^2.8.0",
65 "sinon-expect": "^0.3.0"
66 },
67 "dependencies": {
68 "jsonwebtoken": "^7.1.9",
69 "request": "^2.83.0",
70 "uuid": "^2.0.2"
71 },
72 "license": "MIT"
73}