generated from shkvik/nodejs-console
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 945 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
38
39
40
41
42
43
44
45
46
{
"name": "nodejs_algorithms",
"version": "1.0.0",
"main": "main.js",
"scripts": {
"test": "jest",
"build": "tsc --build"
},
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.5.4"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"testMatch": [
"**/__tests__/**/*.+(ts|tsx)",
"**/?(*.)+(spec|test).+(ts|tsx)"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
]
},
"dependencies": {
"@types/cli-progress": "^3.11.6",
"@types/workerpool": "^6.4.7",
"cli-progress": "^3.12.0",
"reflect-metadata": "^0.2.2",
"workerpool": "^9.1.3"
}
}