-
Notifications
You must be signed in to change notification settings - Fork 65
/
package.json
57 lines (57 loc) · 1.22 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
{
"name": "beetube-bot",
"version": "1.0.0",
"description": "A telegram 🤖 bot for music, movies, anime, torrent, EDM tracks, series downloads, files, and more.",
"keywords": [
"telegram",
"bot",
"download",
"free",
"movies",
"music",
"torrent",
"anime"
],
"main": "bot.js",
"scripts": {
"test": "jest",
"start": "node bot.js",
"dev": "nodemon --trace-warnings bot.js"
},
"author": "Lawrence Onah <paplow01@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kodjunkie/beetube-bot/issues"
},
"homepage": "https://github.com/kodjunkie/beetube-bot#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/kodjunkie/beetube-bot.git"
},
"engines": {
"node": ">=16.x"
},
"jest": {
"testEnvironment": "node",
"setupFilesAfterEnv": [
"./setup-tests.js"
]
},
"dependencies": {
"axios": "^1.3.4",
"bluebird": "^3.7.2",
"dotenv": "^16.0.3",
"lodash": "^4.17.21",
"mongoose": "^7.0.3",
"node-telegram-bot-api": "^0.61.0"
},
"devDependencies": {
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"prettier": "^2.8.7"
}
}