-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 979 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
{
"name": "task-ts-objects",
"version": "1.0.0",
"main": "vairables.ts",
"scripts": {
"test": "jest --watchAll --no-cache",
"ghworkflowtest": "jest"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"reporters": [
"default",
[
"jest-junit",
{
"outputDirectory": "./reports/junit",
"outputName": "junit.xml",
"ancestorSeparator": " › ",
"uniqueOutputName": "false",
"classNameTemplate": "{classname}",
"titleTemplate": "{title}",
"addFileAttribute": "true"
}
]
]
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"ts-node-dev": "^2.0.0",
"typescript": "^5.7.3"
},
"devDependencies": {
"@faker-js/faker": "^9.5.0",
"@types/jest": "^29.5.14",
"axios": "^1.8.1",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"ts-jest": "^29.2.6",
"xml2js": "^0.6.2"
}
}