-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·60 lines (60 loc) · 1.42 KB
/
package.json
File metadata and controls
executable file
·60 lines (60 loc) · 1.42 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
{
"name": "messagemedia-lookups-sdk",
"version": "1.0.1",
"description": "The MessageMedia Lookups API provides a number of endpoints for validating the phone numbers you’re sending to by checking their validity, type and carrier records.",
"main": "./lib/index.js",
"scripts": {
"lint": "eslint lib",
"test": "mocha --recursive"
},
"keywords": [
"sms",
"messaging",
"messagemedia",
"sms-api",
"sms-gateway",
"sms-client"
],
"homepage": "https://developers.messagemedia.com/",
"license": "Apache-2.0",
"author": "MessageMedia Developers",
"bugs": {
"email": "developers@messagemedia.com"
},
"devDependencies": {
"eslint": "^3.18.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3"
},
"dependencies": {
"request": "^2.55.0",
"mocha": "^3.1.2",
"chai": "^3.5.0",
"moment": "^2.17.1",
"winston": "^2.1.1"
},
"eslintConfig": {
"extends": "airbnb",
"env": {
"commonjs": true,
"node": true,
"mocha": true
},
"rules": {
"indent": ["error", 4],
"no-underscore-dangle": 0,
"strict": 0,
"prefer-rest-params": 0
}
},
"directories": {
"lib": "lib",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/messagemedia/lookups-nodejs-sdk.git"
}
}