-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 3.11 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
{
"name": "htmlreport4jest",
"version": "0.5.0-semantically-released",
"description": "Html report for jest",
"main": "dist/index.js",
"keywords": [
"jest",
"jest report",
"jest html report",
"test report",
"jest report",
"html report",
"jest reporter",
"jest html reporter",
"test reporter",
"jest reporter",
"html reporter"
],
"author": "Vinoth",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/vinothdevelop/HTMLReport4Jest"
},
"bugs": {
"url": "https://github.com/vinothdevelop/HTMLReport4Jest/issues"
},
"homepage": "https://vinothdevelop.github.io/HTMLReport4Jest/result.html",
"dependencies": {},
"scripts": {
"build:index": "yarn tsc -p .",
"start": "webpack serve --config webpack.development.config.js",
"build": "webpack --config webpack.build.config.js && yarn build:index",
"test": "jest --silent",
"lint": "eslint ."
},
"eslintConfig": {
"extends": "react-app"
},
"files": [
"dist/index.js",
"readme.md",
"dist/index.html",
"dist/index.d.ts"
],
"types": "./dist/index.d.ts",
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"@jest/reporters": "^26.4.1",
"@jest/test-result": "^26.3.0",
"@jest/types": "^26.3.0",
"@testing-library/jest-dom": "^5.11.0",
"@testing-library/react": "^11.0.0",
"@types/node": "^14.14.9",
"@types/react-dev-utils": "^9.0.4",
"ansi-to-html": "^0.6.14",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^5.0.1",
"eslint": "^7.4.0",
"eslint-config-prettier": "^7.2.0",
"eslint-config-xo": "^0.35.0",
"eslint-config-xo-react": "^0.23.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-sonarjs": "^0.6.0",
"eslint-webpack-plugin": "^2.4.0",
"html-loader": "^2.0.0",
"html-webpack-plugin": "4",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.1.0",
"prettier": "^2.0.5",
"react": "^17.0.1",
"react-dev-utils": "^11.0.0",
"react-dom": "^17.0.1",
"semantic-release": "^17.1.1",
"style-loader": "^2.0.0",
"ts-loader": "^8.0.4",
"typescript": "^4.1.2",
"webpack": "^5.6.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.0.9"
}
}