-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 1.61 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
{
"type": "commonjs",
"name": "typescript-telegram-bot-api",
"version": "0.3.0",
"description": "Telegram Bot API wrapper for Node.js written in TypeScript",
"repository": "github:Borodin/typescript-telegram-bot-api",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest --runInBand --detectOpenHandles --coverage",
"lint": "eslint '{src,tests}/**/*.ts'",
"format": "prettier --write '{src,tests}/**/*.ts'",
"format:check": "prettier --check '{src,tests}/**/*.ts'",
"build": "tsc"
},
"pre-commit": [
"lint",
"format"
],
"keywords": [
"telegram",
"bot",
"api",
"typescript"
],
"author": {
"name": "Maxim Borodin",
"email": "[email protected]",
"url": "https://maximborodin.ru"
},
"license": "ISC",
"devDependencies": {
"@eslint/js": "^9.4.0",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.2",
"axios-mock-adapter": "^1.22.0",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-plugin-jsdoc": "^48.10.2",
"nock": "^13.5.4",
"prettier": "^3.3.2",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.13.0"
},
"dependencies": {
"axios": "^1.7.2",
"form-data": "^4.0.0"
},
"jest": {
"preset": "ts-jest",
"testTimeout": 60000,
"collectCoverage": true,
"coverageReporters": [
"json",
"lcov",
"text",
"clover"
],
"coverageDirectory": "coverage"
},
"files": [
"dist/**/*",
"README.md"
],
"directories": {
"test": "tests"
}
}