-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
46 lines (46 loc) · 1.19 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
{
"name": "telegram-test-server",
"version": "0.0.0",
"description": "Telegram BotAPI server emulator",
"license": "MIT",
"author": "Vitaly Domnikov <dotcypress@gmail.com>",
"homepage": "https://github.com/telegraf/telegram-test-server#readme",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/telegraf/telegram-test-server.git"
},
"bugs": {
"url": "https://github.com/telegraf/telegram-test-server/issues"
},
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "ava test",
"precommit": "npm run lint && npm test"
},
"engines": {
"node": ">=8.6.0"
},
"dependencies": {
"casual": "^1.5.17",
"debug": "^3.0.0",
"http-assert": "^1.3.0",
"http-errors": "^1.6.2",
"koa": "^2.4.1",
"koa-body": "^2.5.0",
"koa-router": "^7.3.0",
"node-fetch": "^1.6.3"
},
"devDependencies": {
"ava": "^0.24.0",
"eslint": "^4.1.1",
"eslint-config-standard": "^10.2.0",
"eslint-plugin-ava": "^4.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^5.1.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"husky": "^0.14.1",
"telegraf": "^3.17.2"
}
}