-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 862 Bytes
/
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
{
"name": "tg-ban-spam",
"version": "0.0.1",
"description": "",
"main": "src/filters.ts",
"author": "Boris Osipov <osipov.boris@gmail.com>",
"license": "MIT",
"scripts": {
"build": "node ./node_modules/typescript/lib/tsc.js",
"lint": "tslint -c tslint.json 'src/**/*.{ts,tsx}'",
"pretest": "npm run lint",
"test": "jest --maxWorkers=4"
},
"dependencies": {
"node-telegram-bot-api": "^0.50.0",
"typescript": "3.1.3",
"winston": "^3.1.0"
},
"devDependencies": {
"@types/node-telegram-bot-api": "^0.40.1",
"@types/jest": "^25.1.0",
"tslint": "^5.11.0",
"jest": "^23.6.0",
"ts-jest": "^26.0.0"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"\\.(ts|tsx)$": "ts-jest"
},
"testRegex": "/__tests__/.*\\.(ts|tsx|js)$"
}
}