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.
Files changed (57) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +48 -0
  3. package/dist/cucumber-reactive-reporter.cjs.js +313 -0
  4. package/dist/cucumber-reactive-reporter.esm.js +309 -0
  5. package/dist/package.json +86 -0
  6. package/dist/react/.DS_Store +0 -0
  7. package/dist/react/asset-manifest.json +26 -0
  8. package/dist/react/cucumber-results.json +2786 -0
  9. package/dist/react/favicon.png +0 -0
  10. package/dist/react/index.html +1 -0
  11. package/dist/react/precache-manifest.js +182 -0
  12. package/dist/react/service-worker.js +39 -0
  13. package/dist/react/static/css/2.css +4 -0
  14. package/dist/react/static/css/main.css +1 -0
  15. package/dist/react/static/js/2.LICENSE.txt +85 -0
  16. package/dist/react/static/js/2.js +2 -0
  17. package/dist/react/static/js/main.LICENSE.txt +1 -0
  18. package/dist/react/static/js/main.js +2 -0
  19. package/dist/react/static/js/runtime-main.js +1 -0
  20. package/dist/react/static/media/fontawesome-webfont.eot +0 -0
  21. package/dist/react/static/media/fontawesome-webfont.svg +2671 -0
  22. package/dist/react/static/media/fontawesome-webfont.ttf +0 -0
  23. package/dist/react/static/media/fontawesome-webfont.woff +0 -0
  24. package/dist/react/static/media/fontawesome-webfont.woff2 +0 -0
  25. package/dist/react/static/media/roboto-all-300-normal.woff +0 -0
  26. package/dist/react/static/media/roboto-all-400-normal.woff +0 -0
  27. package/dist/react/static/media/roboto-all-500-normal.woff +0 -0
  28. package/dist/react/static/media/roboto-all-700-normal.woff +0 -0
  29. package/dist/react/static/media/roboto-cyrillic-300-normal.woff2 +0 -0
  30. package/dist/react/static/media/roboto-cyrillic-400-normal.woff2 +0 -0
  31. package/dist/react/static/media/roboto-cyrillic-500-normal.woff2 +0 -0
  32. package/dist/react/static/media/roboto-cyrillic-700-normal.woff2 +0 -0
  33. package/dist/react/static/media/roboto-cyrillic-ext-300-normal.woff2 +0 -0
  34. package/dist/react/static/media/roboto-cyrillic-ext-400-normal.woff2 +0 -0
  35. package/dist/react/static/media/roboto-cyrillic-ext-500-normal.woff2 +0 -0
  36. package/dist/react/static/media/roboto-cyrillic-ext-700-normal.woff2 +0 -0
  37. package/dist/react/static/media/roboto-greek-300-normal.woff2 +0 -0
  38. package/dist/react/static/media/roboto-greek-400-normal.woff2 +0 -0
  39. package/dist/react/static/media/roboto-greek-500-normal.woff2 +0 -0
  40. package/dist/react/static/media/roboto-greek-700-normal.woff2 +0 -0
  41. package/dist/react/static/media/roboto-greek-ext-300-normal.woff2 +0 -0
  42. package/dist/react/static/media/roboto-greek-ext-400-normal.woff2 +0 -0
  43. package/dist/react/static/media/roboto-greek-ext-500-normal.woff2 +0 -0
  44. package/dist/react/static/media/roboto-greek-ext-700-normal.woff2 +0 -0
  45. package/dist/react/static/media/roboto-latin-300-normal.woff2 +0 -0
  46. package/dist/react/static/media/roboto-latin-400-normal.woff2 +0 -0
  47. package/dist/react/static/media/roboto-latin-500-normal.woff2 +0 -0
  48. package/dist/react/static/media/roboto-latin-700-normal.woff2 +0 -0
  49. package/dist/react/static/media/roboto-latin-ext-300-normal.woff2 +0 -0
  50. package/dist/react/static/media/roboto-latin-ext-400-normal.woff2 +0 -0
  51. package/dist/react/static/media/roboto-latin-ext-500-normal.woff2 +0 -0
  52. package/dist/react/static/media/roboto-latin-ext-700-normal.woff2 +0 -0
  53. package/dist/react/static/media/roboto-vietnamese-300-normal.woff2 +0 -0
  54. package/dist/react/static/media/roboto-vietnamese-400-normal.woff2 +0 -0
  55. package/dist/react/static/media/roboto-vietnamese-500-normal.woff2 +0 -0
  56. package/dist/react/static/media/roboto-vietnamese-700-normal.woff2 +0 -0
  57. package/package.json +88 -0
package/package.json ADDED
@@ -0,0 +1,88 @@
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": false,
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
+ "pretestinstall": "rm -rf test",
23
+ "testinstall": "node devtest.mjs && touch test/.nojekyll",
24
+ "test": "react-scripts test",
25
+ "eject": "react-scripts eject"
26
+ },
27
+ "dependencies": {
28
+ "@babel/cli": "^7.8.4",
29
+ "@babel/core": "^7.8.4",
30
+ "@babel/preset-env": "^7.8.4",
31
+ "ncp": "^2.0.0",
32
+ "rollup": "^1.0.0",
33
+ "rollup-plugin-babel": "^4.2.0",
34
+ "rollup-plugin-commonjs": "^9.2.0",
35
+ "rollup-plugin-copy": "^3.4.0",
36
+ "rollup-plugin-node-resolve": "^4.0.0"
37
+ },
38
+ "devDependencies": {
39
+ "@cucumber/tag-expressions": "^4.1.0",
40
+ "@emotion/react": "^11.7.1",
41
+ "@emotion/styled": "^11.6.0",
42
+ "@fontsource/roboto": "^4.5.2",
43
+ "@monaco-editor/react": "^4.4.5",
44
+ "@mui/icons-material": "^5.2.5",
45
+ "@mui/material": "^5.2.5",
46
+ "@mui/styles": "^5.3.0",
47
+ "@reduxjs/toolkit": "^1.4.0",
48
+ "@testing-library/jest-dom": "^4.2.4",
49
+ "@testing-library/react": "^9.3.2",
50
+ "@testing-library/user-event": "^7.1.2",
51
+ "dayjs": "^1.10.7",
52
+ "fast-memoize": "^2.5.2",
53
+ "font-awesome": "^4.7.0",
54
+ "lodash.memoize": "^4.1.2",
55
+ "moment": "^2.27.0",
56
+ "ncp": "^2.0.0",
57
+ "pretty-data": "^0.40.0",
58
+ "react": "^17.0.2",
59
+ "react-copy-to-clipboard": "^5.0.4",
60
+ "react-dom": "^17.0.2",
61
+ "react-masonry-css": "^1.0.16",
62
+ "react-minimal-pie-chart": "^8.2.0",
63
+ "react-redux": "^7.2.6",
64
+ "react-scripts": "3.4.1",
65
+ "react-select": "^5.2.1",
66
+ "recursive-readdir": "^2.2.2",
67
+ "redux": "^4.0.5",
68
+ "redux-query-sync": "^0.1.10",
69
+ "redux-thunk": "^2.3.0",
70
+ "renamer": "^4.0.0",
71
+ "replace-in-file": "^6.3.2"
72
+ },
73
+ "eslintConfig": {
74
+ "extends": "react-app"
75
+ },
76
+ "browserslist": {
77
+ "production": [
78
+ ">0.2%",
79
+ "not dead",
80
+ "not op_mini all"
81
+ ],
82
+ "development": [
83
+ "last 1 chrome version",
84
+ "last 1 firefox version",
85
+ "last 1 safari version"
86
+ ]
87
+ }
88
+ }