forked from Hazyzh/jest-html-reporters
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.04 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
{
"name": "jest-html-reporters",
"license": "MIT",
"version": "3.0.11",
"description": "Jest test results processor for generating a summary in HTML",
"main": "index.js",
"scripts": {
"dev": "webpack-dev-server --config=webpack.development.config.js",
"build": "yarn tsc && webpack --progress",
"buildCi": "yarn tsc && webpack",
"start": "yarn tsc && npm run dev",
"test": "yarn tsc && yarn jest",
"testCi": "yarn tsc && yarn jest --reporters=default"
},
"keywords": [
"jest",
"html",
"reporter",
"report",
"plugin"
],
"author": "Hazyzh",
"repository": {
"type": "git",
"url": "git+https://github.com/Hazyzh/jest-html-reporters.git"
},
"bugs": {
"url": "https://github.com/Hazyzh/jest-html-reporters/issues"
},
"homepage": "https://github.com/Hazyzh/jest-html-reporters#readme",
"devDependencies": {
"@ant-design/icons": "^4.2.2",
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@babel/preset-stage-0": "^7.8.3",
"@babel/runtime": "^7.11.2",
"@svgr/webpack": "^5.4.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"ansi-to-html": "^0.6.14",
"antd": "^4.23.4",
"babel-core": "^6.26.3",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.3.0",
"babel-loader": "^8.1.0",
"babel-plugin-import-separation": "^1.0.0",
"clean-webpack-plugin": "^3.0.0",
"copy-to-clipboard": "^3.3.1",
"css-loader": "^4.3.0",
"escape-html": "^1.0.3",
"eslint": "^7.10.0",
"eslint-config-standard": "^14.1.1",
"eslint-config-standard-jsx": "^8.1.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^4.0.2",
"eslint-plugin-html": "^6.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.21.3",
"eslint-plugin-standard": "^4.0.1",
"extract-text-webpack-plugin": "^3.0.2",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-webpack-plugin": "^4.5.0",
"jest": "^26.6.3",
"jump.js": "^1.0.2",
"less": "^3.12.2",
"less-loader": "^7.0.1",
"moment": "^2.29.0",
"randomcolor": "^0.6.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hot-loader": "^4.13.0",
"react-router-dom": "^5.2.0",
"recharts": "^2.1.14",
"regenerator-runtime": "^0.13.7",
"style-loader": "^1.3.0",
"terser-webpack-plugin": "^4.2.3",
"typescript": "^4.5.4",
"url-loader": "^4.1.0",
"webpack": "^4.44.2",
"webpack-bundle-analyzer": "^3.9.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"files": [
"index.js",
"helper.js",
"readme.md",
"dist/index.html",
"dist/singleFile.html",
"dist/index.js",
"helper.d.ts"
],
"dependencies": {
"fast-safe-stringify": "^2.1.1",
"fs-extra": "^9.0.1",
"open": "^8.0.3"
}
}