-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
111 lines (111 loc) · 2.77 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "telegram-test-api",
"version": "4.2.1",
"description": "Emulating telegram API",
"keywords": [
"telegram",
"bot",
"test"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*",
"CHANGELOG.MD"
],
"scripts": {
"start": "DEBUG=TelegramServer:* node --use_strict ./bin/start",
"test": "jest",
"test:debug": "DEBUG=TelegramServer:* jest --runInBand",
"lint": "eslint src",
"lint-fix": "eslint --fix src",
"build": "tsc",
"build:watch": "tsc -w",
"coverage": "jest --coverage --coverageReporters=\"text\"",
"coverage-report": "jest --coverage",
"prepublishOnly": "npm run build && npm run coverage-report && npm run lint"
},
"repository": {
"type": "git",
"url": "https://github.com/jehy/telegram-test-api"
},
"author": "Jehy <[email protected]> https://github.com/jehy",
"contributors": [
{
"name": "Petr Ermishkin",
"email": "[email protected]",
"web": "https://github.com/quasiyoke"
},
{
"name": "Roman Bekkiev",
"email": "[email protected]",
"web": "http://rblab.net"
},
{
"name": "Felipe Lalanne",
"email": "[email protected]",
"web": "https://github.com/pipex"
},
{
"name": "limpbrains",
"email": "[email protected]",
"web": "https://github.com/limpbrains"
},
{
"name": "AlexxNB",
"email": "[email protected]",
"web": "https://github.com/AlexxNB"
}
],
"engines": {
"node": ">=12.0"
},
"license": "MIT",
"dependencies": {
"axios": "1.6.0",
"debug": "~4.3.4",
"deep-extend": "~0.6.0",
"express": "~4.19.2",
"http-shutdown": "~1.2.2",
"p-timeout": "4.1.0"
},
"devDependencies": {
"@types/chai": "4.3.1",
"@types/debug": "4.1.7",
"@types/deep-extend": "0.4.32",
"@types/express": "4.17.13",
"@types/jest": "28.1.3",
"@types/node-telegram-bot-api": "0.57.1",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"chai": "^4.3.6",
"coveralls": "^3.1.1",
"eslint": "^8.18.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-sonarjs": "^0.13.0",
"eslint-plugin-standard": "^4.1.0",
"husky": "^8.0.1",
"jest": "28.1.1",
"lint-staged": "13.0.2",
"node-telegram-bot-api": "~0.58.0",
"telegraf": "4.8.5",
"ts-jest": "28.0.5",
"typegram": "3.10.0",
"typescript": "4.7.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run coverage && npm run check_coverage && npm run lint"
}
},
"lint-staged": {
"*.ts": [
"eslint",
"git add"
]
}
}