-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
56 lines (56 loc) · 1.18 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
53
54
55
56
{
"name": "facebot",
"version": "0.0.11",
"description": "Facebook messenger integration in slack",
"main": "lib/facebot.js",
"scripts": {
"start": "node bin/run_postgres.js",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"prettier --write --tab-width 4 --trailing-comma es5 --single-quote",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Weetbix/facebot.git"
},
"keywords": [
"facebook",
"messenger",
"chat",
"fb",
"nodejs",
"node",
"slack",
"slackbot",
"bot",
"integration"
],
"author": "John Hannagan",
"license": "MIT",
"bugs": {
"url": "https://github.com/Weetbix/facebot/issues"
},
"homepage": "https://github.com/Weetbix/facebot#readme",
"dependencies": {
"facebook-chat-api": "^1.6.0",
"js-emoji": "git+https://github.com/iamcal/js-emoji.git",
"mysql": "^2.13.0",
"pg": "^4.4.3",
"q": "^1.4.1",
"slackbots": "^1.1.0",
"underscore": "^1.8.3"
},
"engines": {
"node": "8.5.0"
},
"devDependencies": {
"eslint": "^3.19.0",
"husky": "^0.13.3",
"lint-staged": "^3.4.0",
"prettier": "^0.22.0"
}
}