-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 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
47
48
49
{
"name": "telegraf-mongodb-middleware",
"version": "2.0.1",
"description": "Telegraf.js middleware to push info about bot users to mongodb",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"test": "mocha -r ts-node/register tests/*.test.ts",
"build": "tsc",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/crystalbit/telegraf.js-mongo.git"
},
"keywords": [
"telegraf",
"telegrafjs",
"telegram",
"telegram",
"bot"
],
"author": "crystalbit",
"license": "ISC",
"bugs": {
"url": "https://github.com/crystalbit/telegraf.js-mongo/issues"
},
"homepage": "https://github.com/crystalbit/telegraf.js-mongo#readme",
"dependencies": {
"mongoose": "^5.9.11",
"telegraf": "^3.38.0"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/mocha": "^8.0.3",
"@types/mongoose": "^5.7.36",
"chai": "^4.2.0",
"mocha": "^7.1.2",
"ts-node": "^9.0.0",
"tslint": "^6.1.3",
"typescript": "^4.0.3"
}
}