-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.48 KB
/
package.json
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
{
"name": "messagemedia-conversations-sdk",
"version": "1.0.0",
"description": "The Conversations API allows users to communicate by sending and receiving messages via Over-The-Top (OTT) messaging services. OTT application is an app or service that provides a product over the Internet and bypasses traditional distribution. Here's an in-depth explanation of what the term means.This feature is disabled by default. To enable it, you don't need to make any changes to your application, just an account configuration change by MessageMedia's support team [email protected] our initial release, we're releasing Facebook Messenger which allows you to send messages as a Facebook page owner and receive messages from other Facebook users.",
"main": "./lib/index.js",
"scripts": {
"lint": "eslint lib"
},
"keywords": [],
"author": "MessageMedia Developers",
"bugs": {
"email": "[email protected]"
},
"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",
"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
}
}
}