-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
49 lines (49 loc) · 1.14 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
{
"name": "telegraf-session-dynamodb",
"version": "1.4.0",
"description": "DynamoDB session middleware for Telegraf",
"main": "lib/session.js",
"scripts": {
"test": "mocha --timeout 50000",
"test:local": "export IS_OFFLINE=true && mocha --timeout 50000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nessgor/telegraf-session-dynamodb.git"
},
"keywords": [
"telegram",
"telegram bot",
"telegraf",
"bot framework",
"session",
"middleware",
"DynamoDB",
"Lambda",
"AWS"
],
"author": "Ness Li <nessli2002@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nessgor/telegraf-session-dynamodb/issues"
},
"homepage": "https://github.com/nessgor/telegraf-session-dynamodb#readme",
"engines": {
"node": ">=6.10.3"
},
"config": {
"engine-strict": true
},
"devDependencies": {
"aws-sdk": "^2.208.0",
"chai": "^4.1.2",
"mocha": "^5.0.4",
"serverless-dynamodb-local": "^0.2.28",
"serverless-offline": "^3.18.0",
"telegraf": "^4.8.5"
},
"peerDependencies": {
"aws-sdk": "^2.208.0",
"telegraf": "^4.8.5"
}
}