-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
42 lines (42 loc) · 1.03 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
{
"name": "bot-wat",
"version": "1.0.0",
"description": "Hi, I'm a messenger bot based on Gary Bernhardt's Wat talk (https://www.destroyallsoftware.com/talks/wat).",
"main": "index.js",
"scripts": {
"start": "node server/index.js",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/peralmq/bot-wat.git"
},
"keywords": [
"bot",
"facebook",
"messenger",
"koa"
],
"author": "Pelle Almquist <peralmq@kth.se>",
"license": "MIT",
"bugs": {
"url": "https://github.com/peralmq/bot-wat/issues"
},
"homepage": "https://github.com/peralmq/bot-wat#readme",
"dependencies": {
"koa": "^2.0.0",
"koa-bodyparser": "^3.0.0",
"koa-router": "^7.0.1",
"request": "^2.71.0",
"safe-eval": "^0.2.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"
}
}