-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.58 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
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "melania",
"description": "Facebook Messenger integration with Cisco Unified CCX Web Chat (via Cisco SocialMiner)",
"version": "0.0.1",
"main": "src/app.js",
"scripts": {
"start": "node src/app.js",
"lint": "node_modules/eslint/bin/eslint.js src",
"test": "node_modules/nyc/bin/nyc.js node_modules/mocha/bin/mocha test/**/*Spec.js",
"coverage": "node_modules/nyc/bin/nyc.js --reporter html npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/umnagendra/melania"
},
"author": {
"name": "Nagendra Mahesh",
"email": "umnagendra@gmail.com",
"url": "http://nagendra.xyz"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/umnagendra/melania/issues"
},
"homepage": "https://github.com/umnagendra/melania#readme",
"readme": "https://github.com/umnagendra/melania#readme",
"engines": {
"node": "6.11.3",
"npm": "5.4.2"
},
"dependencies": {
"body-parser": "^1.18.2",
"botly": "^1.4.2",
"express": "^4.15.5",
"express-ping": "^1.4.0",
"lodash": "^4.17.4",
"morgan": "^1.9.0",
"request-promise-native": "^1.0.5",
"winston": "^2.3.1",
"xml2js": "^0.4.19"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.9.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"mocha": "^4.0.1",
"nyc": "^11.2.1",
"sinon": "^4.0.2",
"sinon-chai": "^2.14.0"
}
}