-
-
Notifications
You must be signed in to change notification settings - Fork 78
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.09 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.09 KB
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
{
"name": "jest-html-reporter",
"version": "4.4.0",
"description": "Jest test results processor for generating a summary in HTML",
"main": "dist/index.js",
"unpkg": "dist/index.js",
"files": [
"dist",
"style"
],
"scripts": {
"tsc": "tsc",
"lint": "eslint src/",
"jest": "jest --no-cache --config=jest.config.json",
"test": "yarn lint && yarn jest",
"test:watch": "yarn jest --watch --no-coverage",
"bundle": "rollup -c",
"build": "yarn test && yarn bundle",
"prepublishOnly": "yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Hargne/jest-html-reporter.git"
},
"keywords": [
"jest",
"html",
"reporter",
"report",
"plugin"
],
"author": "Johan Hargne",
"license": "MIT",
"bugs": {
"url": "https://github.com/Hargne/jest-html-reporter/issues"
},
"homepage": "https://github.com/Hargne/jest-html-reporter#readme",
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"@jest/reporters": "^30.0.2",
"@jest/test-result": "^30.0.2",
"@jest/types": "^30.0.1",
"dateformat": "3.0.2",
"mkdirp": "^1.0.3",
"strip-ansi": "6.0.1",
"xmlbuilder": "15.0.0"
},
"peerDependencies": {
"jest": "19.x - 30.x"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@jest/console": "^30.0.2",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"@types/dateformat": "^3.0.X",
"@types/jest": "^30.0.0",
"@types/mkdirp": "1.0.2",
"@types/node": "^22.13.0",
"@types/sinon": "9.0.11",
"eslint": "^9.19.0",
"jest": "^30.0.2",
"jest-environment-jsdom": "^30.0.2",
"rollup": "^4.34.1",
"sinon": "^9.0.1",
"ts-jest": "^29.4.0",
"tslib": "^2.8.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.22.0"
},
"browserslist": [
"since 2017-06"
],
"packageManager": "yarn@1.22.19"
}