UNPKG

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