cucumber-reactive-reporter 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +48 -0
- package/dist/cucumber-reactive-reporter.cjs.js +313 -0
- package/dist/cucumber-reactive-reporter.esm.js +309 -0
- package/dist/package.json +86 -0
- package/dist/react/.DS_Store +0 -0
- package/dist/react/asset-manifest.json +26 -0
- package/dist/react/cucumber-results.json +2786 -0
- package/dist/react/favicon.png +0 -0
- package/dist/react/index.html +1 -0
- package/dist/react/precache-manifest.js +182 -0
- package/dist/react/service-worker.js +39 -0
- package/dist/react/static/css/2.css +4 -0
- package/dist/react/static/css/main.css +1 -0
- package/dist/react/static/js/2.LICENSE.txt +85 -0
- package/dist/react/static/js/2.js +2 -0
- package/dist/react/static/js/main.LICENSE.txt +1 -0
- package/dist/react/static/js/main.js +2 -0
- package/dist/react/static/js/runtime-main.js +1 -0
- package/dist/react/static/media/fontawesome-webfont.eot +0 -0
- package/dist/react/static/media/fontawesome-webfont.svg +2671 -0
- package/dist/react/static/media/fontawesome-webfont.ttf +0 -0
- package/dist/react/static/media/fontawesome-webfont.woff +0 -0
- package/dist/react/static/media/fontawesome-webfont.woff2 +0 -0
- package/dist/react/static/media/roboto-all-300-normal.woff +0 -0
- package/dist/react/static/media/roboto-all-400-normal.woff +0 -0
- package/dist/react/static/media/roboto-all-500-normal.woff +0 -0
- package/dist/react/static/media/roboto-all-700-normal.woff +0 -0
- package/dist/react/static/media/roboto-cyrillic-300-normal.woff2 +0 -0
- package/dist/react/static/media/roboto-cyrillic-400-normal.woff2 +0 -0
- package/dist/react/static/media/roboto-cyrillic-500-normal.woff2 +0 -0
- package/dist/react/static/media/roboto-cyrillic-700-normal.woff2 +0 -0
- package/dist/react/static/media/roboto-cyrillic-ext-300-normal.woff2 +0 -0
- package/dist/react/static/media/roboto-cyrillic-ext-400-normal.woff2 +0 -0
- package/dist/react/static/media/roboto-cyrillic-ext-500-normal.woff2 +0 -0
- package/dist/react/static/media/roboto-cyrillic-ext-700-normal.woff2 +0 -0
- package/dist/react/static/media/roboto-greek-300-normal.woff2 +0 -0
- package/dist/react/static/media/roboto-greek-400-normal.woff2 +0 -0
- package/dist/react/static/media/roboto-greek-500-normal.woff2 +0 -0
- package/dist/react/static/media/roboto-greek-700-normal.woff2 +0 -0
- package/dist/react/static/media/roboto-greek-ext-300-normal.woff2 +0 -0
- package/dist/react/static/media/roboto-greek-ext-400-normal.woff2 +0 -0
- package/dist/react/static/media/roboto-greek-ext-500-normal.woff2 +0 -0
- package/dist/react/static/media/roboto-greek-ext-700-normal.woff2 +0 -0
- package/dist/react/static/media/roboto-latin-300-normal.woff2 +0 -0
- package/dist/react/static/media/roboto-latin-400-normal.woff2 +0 -0
- package/dist/react/static/media/roboto-latin-500-normal.woff2 +0 -0
- package/dist/react/static/media/roboto-latin-700-normal.woff2 +0 -0
- package/dist/react/static/media/roboto-latin-ext-300-normal.woff2 +0 -0
- package/dist/react/static/media/roboto-latin-ext-400-normal.woff2 +0 -0
- package/dist/react/static/media/roboto-latin-ext-500-normal.woff2 +0 -0
- package/dist/react/static/media/roboto-latin-ext-700-normal.woff2 +0 -0
- package/dist/react/static/media/roboto-vietnamese-300-normal.woff2 +0 -0
- package/dist/react/static/media/roboto-vietnamese-400-normal.woff2 +0 -0
- package/dist/react/static/media/roboto-vietnamese-500-normal.woff2 +0 -0
- package/dist/react/static/media/roboto-vietnamese-700-normal.woff2 +0 -0
- package/package.json +88 -0
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "cucumber-reactive-reporter",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "A filterable html report generator for cucumberjs written in react",
|
|
5
|
+
"private": true,
|
|
6
|
+
"homepage": "./",
|
|
7
|
+
"main": "dist/cucumber-reactive-reporter.cjs.js",
|
|
8
|
+
"module": "dist/cucumber-reactive-reporter.esm.js",
|
|
9
|
+
"files": ["dist/**/*"],
|
|
10
|
+
"repository": "github.com:unsuspecting-noob/cucumber-reactive-reporter.git",
|
|
11
|
+
"keywords": ["cucumber", "cucumberjs", "html", "report", "reporter"],
|
|
12
|
+
"license": "MIT",
|
|
13
|
+
"scripts": {
|
|
14
|
+
"start": "react-scripts start",
|
|
15
|
+
"build": "rollup -c",
|
|
16
|
+
"prebuildreact": "rm -rf build && rm -rf react",
|
|
17
|
+
"buildreact": "react-scripts build && npm run build",
|
|
18
|
+
"postbuildreact": "cp -R ./build ./react",
|
|
19
|
+
"pregeneratedist": "rm -rf dist",
|
|
20
|
+
"generatedist": "npm run buildreact && node prepDist.mjs",
|
|
21
|
+
"postgeneratedist": "node install.mjs",
|
|
22
|
+
"test": "react-scripts test",
|
|
23
|
+
"eject": "react-scripts eject"
|
|
24
|
+
},
|
|
25
|
+
"dependencies": {
|
|
26
|
+
"@babel/cli": "^7.8.4",
|
|
27
|
+
"@babel/core": "^7.8.4",
|
|
28
|
+
"@babel/preset-env": "^7.8.4",
|
|
29
|
+
"ncp": "^2.0.0",
|
|
30
|
+
"rollup": "^1.0.0",
|
|
31
|
+
"rollup-plugin-babel": "^4.2.0",
|
|
32
|
+
"rollup-plugin-commonjs": "^9.2.0",
|
|
33
|
+
"rollup-plugin-copy": "^3.4.0",
|
|
34
|
+
"rollup-plugin-node-resolve": "^4.0.0"
|
|
35
|
+
},
|
|
36
|
+
"devDependencies": {
|
|
37
|
+
"@cucumber/tag-expressions": "^4.1.0",
|
|
38
|
+
"@emotion/react": "^11.7.1",
|
|
39
|
+
"@emotion/styled": "^11.6.0",
|
|
40
|
+
"@fontsource/roboto": "^4.5.2",
|
|
41
|
+
"@monaco-editor/react": "^4.4.5",
|
|
42
|
+
"@mui/icons-material": "^5.2.5",
|
|
43
|
+
"@mui/material": "^5.2.5",
|
|
44
|
+
"@mui/styles": "^5.3.0",
|
|
45
|
+
"@reduxjs/toolkit": "^1.4.0",
|
|
46
|
+
"@testing-library/jest-dom": "^4.2.4",
|
|
47
|
+
"@testing-library/react": "^9.3.2",
|
|
48
|
+
"@testing-library/user-event": "^7.1.2",
|
|
49
|
+
"dayjs": "^1.10.7",
|
|
50
|
+
"fast-memoize": "^2.5.2",
|
|
51
|
+
"font-awesome": "^4.7.0",
|
|
52
|
+
"lodash.memoize": "^4.1.2",
|
|
53
|
+
"moment": "^2.27.0",
|
|
54
|
+
"ncp": "^2.0.0",
|
|
55
|
+
"pretty-data": "^0.40.0",
|
|
56
|
+
"react": "^17.0.2",
|
|
57
|
+
"react-copy-to-clipboard": "^5.0.4",
|
|
58
|
+
"react-dom": "^17.0.2",
|
|
59
|
+
"react-masonry-css": "^1.0.16",
|
|
60
|
+
"react-minimal-pie-chart": "^8.2.0",
|
|
61
|
+
"react-redux": "^7.2.6",
|
|
62
|
+
"react-scripts": "3.4.1",
|
|
63
|
+
"react-select": "^5.2.1",
|
|
64
|
+
"recursive-readdir": "^2.2.2",
|
|
65
|
+
"redux": "^4.0.5",
|
|
66
|
+
"redux-query-sync": "^0.1.10",
|
|
67
|
+
"redux-thunk": "^2.3.0",
|
|
68
|
+
"renamer": "^4.0.0",
|
|
69
|
+
"replace-in-file": "^6.3.2"
|
|
70
|
+
},
|
|
71
|
+
"eslintConfig": {
|
|
72
|
+
"extends": "react-app"
|
|
73
|
+
},
|
|
74
|
+
"browserslist": {
|
|
75
|
+
"production": [
|
|
76
|
+
">0.2%",
|
|
77
|
+
"not dead",
|
|
78
|
+
"not op_mini all"
|
|
79
|
+
],
|
|
80
|
+
"development": [
|
|
81
|
+
"last 1 chrome version",
|
|
82
|
+
"last 1 firefox version",
|
|
83
|
+
"last 1 safari version"
|
|
84
|
+
]
|
|
85
|
+
}
|
|
86
|
+
}
|
|
Binary file
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"files": {
|
|
3
|
+
"main.css": "./static/css/main.css",
|
|
4
|
+
"main.js": "./static/js/main.js",
|
|
5
|
+
"runtime-main.js": "./static/js/runtime-main.js",
|
|
6
|
+
"static/css/2.css": "./static/css/2.css",
|
|
7
|
+
"static/js/2.js": "./static/js/2.js",
|
|
8
|
+
"index.html": "./index.html",
|
|
9
|
+
"precache-manifest.js": "./precache-manifest.js",
|
|
10
|
+
"service-worker.js": "./service-worker.js",
|
|
11
|
+
"static/js/2.js.LICENSE.txt": "./static/js/2.js.LICENSE.txt",
|
|
12
|
+
"static/js/main.LICENSE.txt": "./static/js/main.LICENSE.txt",
|
|
13
|
+
"static/media/font-awesome.css": "./static/media/fontawesome-webfont.woff",
|
|
14
|
+
"static/media/300.css": "./static/media/roboto-vietnamese-300-normal.woff2",
|
|
15
|
+
"static/media/400.css": "./static/media/roboto-vietnamese-400-normal.woff2",
|
|
16
|
+
"static/media/500.css": "./static/media/roboto-vietnamese-500-normal.woff2",
|
|
17
|
+
"static/media/700.css": "./static/media/roboto-vietnamese-700-normal.woff2"
|
|
18
|
+
},
|
|
19
|
+
"entrypoints": [
|
|
20
|
+
"static/js/runtime-main.js",
|
|
21
|
+
"static/css/2.css",
|
|
22
|
+
"static/js/2.js",
|
|
23
|
+
"static/css/main.css",
|
|
24
|
+
"static/js/main.js"
|
|
25
|
+
]
|
|
26
|
+
}
|