forked from thedevs-network/the-guard-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.57 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
{
"name": "the_guard_bot",
"version": "1.3.0",
"description": "Telegram guard bot to manage network of groups.",
"main": "index.js",
"scripts": {
"postversion": "git push --atomic --follow-tags origin develop develop:master",
"start": "node index",
"lint": "eslint --ext .ts --ext .js .",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheDevs-Network/bot.git"
},
"keywords": [
"bot",
"the guard",
"thedevs",
"telegram"
],
"author": "Thomas Rory Gummerson <thomas@gummerson.no> (https://trgwii.no)",
"contributors": [
"Pouria Ezzati <pouria@thedevs.network> (https://thedevs.network)",
"Wojciech Pawlik <woj.pawlik@gmail.com>"
],
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/TheDevs-Network/the-guard-bot/issues"
},
"homepage": "https://github.com/TheDevs-Network/the-guard-bot/",
"dependencies": {
"daggy": "^1.3.0",
"dedent-js": "^1.0.1",
"millisecond": "^0.1.2",
"nedb-promise": "^2.0.1",
"node-fetch": "^2.2.0",
"ramda": "^0.25.0",
"require-directory": "^2.1.1",
"spamwatch": "^0.2.0",
"telegraf": "^3.38.0",
"ts-node": "^8.9.1",
"typescript": "^3.8.3",
"xregexp": "^4.2.0"
},
"engines": {
"node": ">=12.3.1"
},
"devDependencies": {
"@types/node": "^13.13.2",
"@typescript-eslint/eslint-plugin": "^2.31.0",
"@typescript-eslint/parser": "^2.31.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"prettier": "2.0.5"
}
}