-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
74 lines (74 loc) · 1.87 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "telegraf-session-local",
"version": "2.1.1",
"description": "Telegraf local sessions middleware with multiple supported storage types (Memory/FileSync/FileAsync/...) using lowdb",
"main": "lib/session.js",
"types": "lib/session.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/RealSpeaker/telegraf-session-local.git"
},
"keywords": [
"telegram",
"telegram bot",
"telegraf",
"telegraf session",
"telegraf session local",
"session",
"middleware",
"database",
"local database",
"json",
"lowdb",
"db"
],
"author": "Tema Smirnov <[email protected]>",
"license": "MIT",
"contributors": [
"EdJoPaTo <[email protected]> (https://edjopato.de/)"
],
"bugs": {
"url": "https://github.com/RealSpeaker/telegraf-session-local/issues"
},
"homepage": "https://realspeaker.github.io/telegraf-session-local/",
"engines": {
"node": ">=12"
},
"files": [
"lib"
],
"scripts": {
"lint": "npx eslint . --fix",
"test": "npx nyc mocha tests --require should",
"coverage": "npx nyc report --reporter=lcovonly",
"jsdoc": "npx jsdoc -c jsdoc.json",
"version": "npm run jsdoc && git add docs",
"release": "npx np"
},
"dependencies": {
"@types/lowdb": "^1.0.9",
"lowdb": "^1.0.0"
},
"peerDependencies": {
"debug": "^2.0.0 || ^3.0.0 || ^4.0.0",
"telegraf": "^3.38.0 || ^4.0.0"
},
"devDependencies": {
"docdash": "^2.0.1",
"eslint": "^8.32.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"jsdoc": "^4.0.0",
"mocha": "^10.2.0",
"np": "*",
"nyc": "^15.1.0",
"should": "^13.2.3",
"telegraf": "^4.11.2"
},
"np": {
"yarn": false
}
}