-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
66 lines (66 loc) · 2.05 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
{
"name": "google-it-telegram-bot",
"homepage": "https://github.com/Edgar-P-yan/google-it-telegram-bot#readme",
"main": "dist/main.js",
"license": "MIT",
"bugs": "https://github.com/Edgar-P-yan/google-it-telegram-bot/issues",
"scripts": {
"build": "rimraf dist && tsc",
"start": "node --enable-source-maps dist/main.js",
"start:dev": "yarn ts-node src/main.ts",
"lint": "eslint \"*/**/*.{ts,js,json}\"",
"lint:fix": "eslint \"*/**/*.{ts,js,json}\" --fix",
"test": "mocha -r ts-node/register --extension ts,js 'src/**/*.unit-test.ts'",
"test:integration": "mocha -r ts-node/register --extension ts,js 'src/**/*.integration-test.ts'",
"coverage": "nyc -r lcov --all npm run test"
},
"repository": {
"type": "git",
"url": "https://github.com/Edgar-P-yan/google-it-telegram-bot.git"
},
"author": {
"name": "Edgar Pogosyan",
"email": "[email protected]",
"url": "https://github.com/Edgar-P-yan"
},
"dependencies": {
"@hapi/joi": "^16.1.7",
"cls-hooked": "^4.2.2",
"dotenv": "^8.0.0",
"forever": "^1.0.0",
"googleapis": "^40.0.0",
"he": "^1.2.0",
"lodash": "^4.17.19",
"telegraf": "3.35.0",
"winston": "^3.2.1"
},
"devDependencies": {
"@fluffy-spoon/substitute": "^1.110.0",
"@types/chai": "^4.2.9",
"@types/chai-subset": "^1.3.3",
"@types/cls-hooked": "^4.3.0",
"@types/dotenv": "^6.1.1",
"@types/eslint": "^8.37.0",
"@types/hapi__joi": "^16.0.1",
"@types/he": "^1.1.0",
"@types/lodash": "^4.14.138",
"@types/mocha": "^7.0.1",
"@types/node": "^12.7.5",
"@types/sinon": "^7.5.1",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"chai": "^4.2.0",
"chai-subset": "^1.6.0",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"mocha": "^7.0.1",
"nyc": "^15.0.0",
"prettier": "^2.8.8",
"rimraf": "^3.0.0",
"sinon": "^8.1.1",
"ts-node": "^10.9.1",
"tslint": "^5.20.0",
"typescript": "^5.0.4"
}
}