-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
109 lines (109 loc) · 3.79 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "puppeteer-jest-es6",
"version": "1.0.0",
"description": "End to End, API, Front performance tests",
"main": "index.js",
"jest": {
"globals": {
"reservedTestUsers": []
},
"testRegex": "/tests/.*(api|ui|soap|spec|rest|perf)\\.ts$",
"testEnvironment": "<rootDir>/src/app/config/browser/test.environment.js",
"globalSetup": "<rootDir>/src/app/config/browser/global.setup.ts",
"globalTeardown": "<rootDir>/src/app/config/browser/global.teardown.ts",
"setupFilesAfterEnv": [
"<rootDir>/src/app/config/jest.settings.ts"
],
"reporters": [
"default",
"<rootDir>/src/app/util/report/reporter.js",
"jest-html-reporter",
"jest-junit"
]
},
"scripts": {
"test": "jest",
"check-types": "tsc",
"local": "npm test --runInBand -- --ENV_TO_CHECK=LOCAL --BUILD_NUMBER=1 spec --CHECK=SPEC --debug --SCREENSHOT=false"
},
"jest-junit": {
"suiteName": "Test Execution",
"outputDirectory": "./result/junit/",
"outputName": "report.xml",
"suiteNameTemplate": "{filepath}",
"classNameTemplate": "{classname}",
"ancestorSeparator": ".",
"addFileAttribute": true,
"includeConsoleOutput": true,
"titleTemplate": "{title}"
},
"jest-html-reporter": {
"pageTitle": "Test Execution",
"outputPath": "./result/html/report.html",
"includeFailureMsg": true
},
"keywords": [],
"author": "mhuretski",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.8.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/plugin-proposal-optional-chaining": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/plugin-transform-typescript": "^7.7.4",
"@babel/preset-env": "^7.8.6",
"@babel/preset-typescript": "^7.8.3",
"@babel/runtime": "^7.8.4",
"@jest/core": "^24.9.0",
"@types/dateformat": "^3.0.1",
"@types/jest": "^24.9.1",
"@types/jest-image-snapshot": "^2.11.1",
"@types/lodash": "^4.14.149",
"@types/mkdirp": "^1.0.0",
"@types/puppeteer": "^2.0.1",
"@types/rimraf": "^2.0.3",
"@types/stack-trace": "0.0.29",
"@types/xml2js": "^0.4.5",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"babel-eslint": "~10.0.1",
"babel-jest": "^24.9.0",
"babel-plugin-module-resolver": "^4.0.0",
"prettier": "^2.3.1",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-babel": "~5.3.0",
"eslint-plugin-import": "^2.23.2",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-jsx-a11y": "~6.2.1",
"eslint-plugin-node": "~8.0.1",
"eslint-plugin-package-json": "~0.1.3",
"eslint-plugin-promise": "^5.1.0",
"ts-jest": "^24.3.0",
"typescript": "^3.8.3"
},
"dependencies": {
"acorn": "^7.1.1",
"axios": "^0.19.2",
"dateformat": "^3.0.3",
"https": "^1.0.0",
"jest": "^24.9.0",
"jest-environment-node": "^25.1.0",
"jest-html-reporter": "^3.7.0",
"jest-image-snapshot": "^2.12.0",
"jest-junit": "^6.4.0",
"lighthouse": "^5.6.0",
"lodash": "^4.17.15",
"mkdirp": "^0.5.1",
"node-datetime": "^2.1.2",
"pdf-image": "^2.0.0",
"pixelmatch": "^5.1.0",
"puppeteer": "^2.1.1",
"rimraf": "^3.0.2",
"stack-trace": "0.0.10",
"write-file-p": "^1.0.7",
"xml2js": "^0.4.23"
}
}