-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
33 lines (33 loc) · 858 Bytes
/
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
{
"name": "node_bot",
"version": "1.0.0",
"description": "A quick example working with messenger API to create a simple bot.",
"main": "app.js",
"scripts": {
"start": "node app.js",
"debug": "node debug app.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/AlexVentura/node_messenger_bot.git"
},
"keywords": [
"nodejs",
"facebook",
"messenger",
"bot"
],
"author": "Alejandro Ventura <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/AlexVentura/node_messenger_bot/issues"
},
"homepage": "https://github.com/AlexVentura/node_messenger_bot#readme",
"dependencies": {
"body-parser": "^1.15.0",
"ejs": "^2.4.1",
"express": "^4.13.4",
"request": "^2.72.0"
}
}