-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
41 lines (41 loc) · 1.06 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
{
"name": "koa-facebook-messenger-echo-bot",
"version": "1.0.0",
"description": "Bot for Facebook Messenger that echoes everything. Written using Koa 2",
"main": "index.js",
"scripts": {
"start": "node server/index.js",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/peralmq/koa-facebook-messenger-echo-bot.git"
},
"keywords": [
"bot",
"facebook",
"messenger",
"koa"
],
"author": "Pelle Almquist <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/peralmq/koa-facebook-messenger-echo-bot/issues"
},
"homepage": "https://github.com/peralmq/koa-facebook-messenger-echo-bot#readme",
"dependencies": {
"koa": "^2.0.0",
"koa-bodyparser": "^3.0.0",
"koa-router": "^7.0.1",
"request": "^2.71.0"
},
"devDependencies": {
"eslint": "^2.5.3",
"eslint-config-standard": "^5.1.0",
"eslint-plugin-babel": "^3.1.0",
"eslint-plugin-promise": "^1.1.0",
"eslint-plugin-standard": "^1.3.1",
"mocha": "^2.0.1",
"should": "^8.3.1"
}
}