-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
fabian schuller
committed
Jun 6, 2024
1 parent
5a2f079
commit 7fd6773
Showing
29 changed files
with
17,438 additions
and
27,472 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,168 @@ | ||
{ | ||
"name": "mochawesome-report-generator", | ||
"version": "6.2.0", | ||
"description": "Generates gorgeous HTML reports from mochawesome reporter.", | ||
"scripts": { | ||
"lint": "eslint src test --ext js", | ||
"stylelint": "stylelint src/**/*.css src/components/**/*.css", | ||
"pretest": "npm run lint", | ||
"test": "cross-env NODE_ENV=test nyc mocha \"test/spec/**/*.test.js\" --exit", | ||
"tdd": "cross-env NODE_ENV=test nyc mocha --watch \"test/spec/**/*.test.js\"", | ||
"test:single": "cross-env NODE_ENV=test nyc mocha ", | ||
"test:functional": "cross-env NODE_ENV=test node ./test-functional/index.js", | ||
"compile:main": "babel ./src/lib -d lib/", | ||
"compile:cli": "babel ./src/bin -d bin/", | ||
"compile": "npm run compile:main && npm run compile:cli", | ||
"build": "rm -rf dist/assets && NODE_ENV=production npm run webpack", | ||
"prepack": "npm run build && npm run compile", | ||
"webpack": "npm run pack:external && npm run pack:inline", | ||
"pack:external": "MARGE_ASSETS=external webpack", | ||
"pack:inline": "MARGE_ASSETS=inline webpack", | ||
"devserver": "webpack-dev-server --inline --watch --hot", | ||
"cli": "node ./bin/cli test/sample-data/test.json --dev", | ||
"dev": "npm run compile && npm run cli && npm run devserver", | ||
"dev:cli": "nodemon --watch src/bin --watch src/lib --exec npm run compile" | ||
}, | ||
"author": "Adam Gruber", | ||
"license": "MIT", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/adamgruber/mochawesome-report-generator" | ||
}, | ||
"keywords": [ | ||
"mochawesome", | ||
"mocha", | ||
"reporter", | ||
"json", | ||
"react", | ||
"report generator" | ||
], | ||
"main": "lib/main.js", | ||
"bin": { | ||
"marge": "./bin/cli.js" | ||
}, | ||
"files": [ | ||
"bin/cli.js", | ||
"bin/cli-main.js", | ||
"bin/types.js", | ||
"bin/logger.js", | ||
"lib/main.js", | ||
"lib/main-html.js", | ||
"lib/options.js", | ||
"dist" | ||
], | ||
"nyc": { | ||
"sourceMap": false, | ||
"instrument": false, | ||
"reporter": [ | ||
"html", | ||
"text", | ||
"cobertura", | ||
"lcov" | ||
], | ||
"exclude": [ | ||
"test/**/*", | ||
"src/client/components/mobxDevtool.js", | ||
"src/client/components/summary", | ||
"src/client/components/status-bar", | ||
"src/client/components/radio-button" | ||
], | ||
"check-coverage": true, | ||
"statements": 95, | ||
"branches": 90, | ||
"functions": 95, | ||
"lines": 95 | ||
}, | ||
"dependencies": { | ||
"chalk": "^4.1.2", | ||
"dateformat": "^4.5.1", | ||
"escape-html": "^1.0.3", | ||
"fs-extra": "^10.0.0", | ||
"fsu": "^1.1.1", | ||
"lodash.isfunction": "^3.0.9", | ||
"opener": "^1.5.2", | ||
"prop-types": "^15.7.2", | ||
"tcomb": "^3.2.17", | ||
"tcomb-validation": "^3.3.0", | ||
"validator": "^13.6.0", | ||
"yargs": "^17.2.1" | ||
}, | ||
"devDependencies": { | ||
"@babel/cli": "^7.1.0", | ||
"@babel/core": "^7.4.0", | ||
"@babel/plugin-proposal-class-properties": "^7.4.0", | ||
"@babel/plugin-proposal-decorators": "^7.4.0", | ||
"@babel/preset-env": "^7.4.2", | ||
"@babel/preset-react": "^7.0.0", | ||
"@babel/register": "^7.4.0", | ||
"app-module-path": "^2.1.0", | ||
"axios": "^0.18.0", | ||
"babel-eslint": "^10.0.1", | ||
"babel-loader": "^8.0.5", | ||
"babel-plugin-istanbul": "^5.1.1", | ||
"babel-plugin-transform-decorators-legacy": "^1.3.4", | ||
"babel-preset-minify": "^0.5.0", | ||
"chai": "^4.1.2", | ||
"chai-as-promised": "^7.1.1", | ||
"chai-enzyme": "^1.0.0-beta.0", | ||
"chartist": "^0.11.0", | ||
"classnames": "^2.2.5", | ||
"cross-env": "^5.1.3", | ||
"css-loader": "^2.1.1", | ||
"css-modules-require-hook": "^4.0.5", | ||
"cssnano": "^4.1.10", | ||
"date-fns": "^1.29.0", | ||
"enzyme": "^3.9.0", | ||
"enzyme-adapter-react-16": "^1.11.2", | ||
"eslint": "^5.15.3", | ||
"eslint-config-airbnb": "^17.1.0", | ||
"eslint-config-prettier": "^4.1.0", | ||
"eslint-loader": "^2.1.2", | ||
"eslint-plugin-import": "^2.16.0", | ||
"eslint-plugin-jsx-a11y": "^6.2.1", | ||
"eslint-plugin-react": "^7.12.4", | ||
"faker": "^4.1.0", | ||
"file-loader": "^3.0.1", | ||
"highlight.js": "^9.15.6", | ||
"jsdom": "^14.0.0", | ||
"jsdom-global": "^3.0.2", | ||
"json-loader": "^0.5.7", | ||
"lodash": "^4.16.4", | ||
"material-design-icons": "^3.0.1", | ||
"mini-css-extract-plugin": "^0.5.0", | ||
"mobx": "^5.9.0", | ||
"mobx-react": "^5.2.8", | ||
"mobx-react-devtools": "^6.1.1", | ||
"mocha": "^6.0.2", | ||
"nodemon": "^1.18.10", | ||
"normalize.css": "^8.0.0", | ||
"nyc": "^13.3.0", | ||
"postcss": "^7.0.14", | ||
"postcss-extend-rule": "^2.0.0", | ||
"postcss-import": "^12.0.0", | ||
"postcss-loader": "^3.0.0", | ||
"postcss-preset-env": "^6.6.0", | ||
"postcss-reporter": "^6.0.1", | ||
"postcss-url": "^8.0.0", | ||
"prettier": "^1.16.4", | ||
"pretty-ms": "^7.0.0", | ||
"proxyquire": "^2.1.0", | ||
"raf": "^3.4.0", | ||
"react": "^16.13.1", | ||
"react-dom": "^16.13.1", | ||
"react-test-renderer": "^16.8.5", | ||
"sinon": "^7.3.0", | ||
"string-replace-loader": "^2.1.1", | ||
"style-loader": "^0.23.0", | ||
"stylelint": "^9.10.1", | ||
"stylelint-config-prettier": "^5.0.0", | ||
"stylelint-config-standard": "^18.2.0", | ||
"stylelint-order": "^2.1.0", | ||
"stylelint-webpack-plugin": "^0.10.5", | ||
"terser-webpack-plugin": "^4.2.3", | ||
"url-loader": "^1.1.1", | ||
"webpack": "^4.29.6", | ||
"webpack-cli": "^3.3.0", | ||
"webpack-dev-server": "^3.2.1" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,168 @@ | ||
{ | ||
"name": "mochawesome-report-generator", | ||
"version": "6.2.0", | ||
"description": "Generates gorgeous HTML reports from mochawesome reporter.", | ||
"scripts": { | ||
"lint": "eslint src test --ext js", | ||
"stylelint": "stylelint src/**/*.css src/components/**/*.css", | ||
"pretest": "npm run lint", | ||
"test": "cross-env NODE_ENV=test nyc mocha \"test/spec/**/*.test.js\" --exit", | ||
"tdd": "cross-env NODE_ENV=test nyc mocha --watch \"test/spec/**/*.test.js\"", | ||
"test:single": "cross-env NODE_ENV=test nyc mocha ", | ||
"test:functional": "cross-env NODE_ENV=test node ./test-functional/index.js", | ||
"compile:main": "babel ./src/lib -d lib/", | ||
"compile:cli": "babel ./src/bin -d bin/", | ||
"compile": "npm run compile:main && npm run compile:cli", | ||
"build": "rm -rf dist/assets && NODE_ENV=production npm run webpack", | ||
"prepack": "npm run build && npm run compile", | ||
"webpack": "npm run pack:external && npm run pack:inline", | ||
"pack:external": "MARGE_ASSETS=external webpack", | ||
"pack:inline": "MARGE_ASSETS=inline webpack", | ||
"devserver": "webpack-dev-server --inline --watch --hot", | ||
"cli": "node ./bin/cli test/sample-data/test.json --dev", | ||
"dev": "npm run compile && npm run cli && npm run devserver", | ||
"dev:cli": "nodemon --watch src/bin --watch src/lib --exec npm run compile" | ||
}, | ||
"author": "Adam Gruber", | ||
"license": "MIT", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/adamgruber/mochawesome-report-generator" | ||
}, | ||
"keywords": [ | ||
"mochawesome", | ||
"mocha", | ||
"reporter", | ||
"json", | ||
"react", | ||
"report generator" | ||
], | ||
"main": "lib/main.js", | ||
"bin": { | ||
"marge": "./bin/cli.js" | ||
}, | ||
"files": [ | ||
"bin/cli.js", | ||
"bin/cli-main.js", | ||
"bin/types.js", | ||
"bin/logger.js", | ||
"lib/main.js", | ||
"lib/main-html.js", | ||
"lib/options.js", | ||
"dist" | ||
], | ||
"nyc": { | ||
"sourceMap": false, | ||
"instrument": false, | ||
"reporter": [ | ||
"html", | ||
"text", | ||
"cobertura", | ||
"lcov" | ||
], | ||
"exclude": [ | ||
"test/**/*", | ||
"src/client/components/mobxDevtool.js", | ||
"src/client/components/summary", | ||
"src/client/components/status-bar", | ||
"src/client/components/radio-button" | ||
], | ||
"check-coverage": true, | ||
"statements": 95, | ||
"branches": 90, | ||
"functions": 95, | ||
"lines": 95 | ||
}, | ||
"dependencies": { | ||
"chalk": "^4.1.2", | ||
"dateformat": "^4.5.1", | ||
"escape-html": "^1.0.3", | ||
"fs-extra": "^10.0.0", | ||
"fsu": "^1.1.1", | ||
"lodash.isfunction": "^3.0.9", | ||
"opener": "^1.5.2", | ||
"prop-types": "^15.7.2", | ||
"tcomb": "^3.2.17", | ||
"tcomb-validation": "^3.3.0", | ||
"validator": "^13.6.0", | ||
"yargs": "^17.2.1" | ||
}, | ||
"devDependencies": { | ||
"@babel/cli": "^7.1.0", | ||
"@babel/core": "^7.4.0", | ||
"@babel/plugin-proposal-class-properties": "^7.4.0", | ||
"@babel/plugin-proposal-decorators": "^7.4.0", | ||
"@babel/preset-env": "^7.4.2", | ||
"@babel/preset-react": "^7.0.0", | ||
"@babel/register": "^7.4.0", | ||
"app-module-path": "^2.1.0", | ||
"axios": "^0.18.0", | ||
"babel-eslint": "^10.0.1", | ||
"babel-loader": "^8.0.5", | ||
"babel-plugin-istanbul": "^5.1.1", | ||
"babel-plugin-transform-decorators-legacy": "^1.3.4", | ||
"babel-preset-minify": "^0.5.0", | ||
"chai": "^4.1.2", | ||
"chai-as-promised": "^7.1.1", | ||
"chai-enzyme": "^1.0.0-beta.0", | ||
"chartist": "^0.11.0", | ||
"classnames": "^2.2.5", | ||
"cross-env": "^5.1.3", | ||
"css-loader": "^2.1.1", | ||
"css-modules-require-hook": "^4.0.5", | ||
"cssnano": "^4.1.10", | ||
"date-fns": "^1.29.0", | ||
"enzyme": "^3.9.0", | ||
"enzyme-adapter-react-16": "^1.11.2", | ||
"eslint": "^5.15.3", | ||
"eslint-config-airbnb": "^17.1.0", | ||
"eslint-config-prettier": "^4.1.0", | ||
"eslint-loader": "^2.1.2", | ||
"eslint-plugin-import": "^2.16.0", | ||
"eslint-plugin-jsx-a11y": "^6.2.1", | ||
"eslint-plugin-react": "^7.12.4", | ||
"faker": "^4.1.0", | ||
"file-loader": "^3.0.1", | ||
"highlight.js": "^9.15.6", | ||
"jsdom": "^14.0.0", | ||
"jsdom-global": "^3.0.2", | ||
"json-loader": "^0.5.7", | ||
"lodash": "^4.16.4", | ||
"material-design-icons": "^3.0.1", | ||
"mini-css-extract-plugin": "^0.5.0", | ||
"mobx": "^5.9.0", | ||
"mobx-react": "^5.2.8", | ||
"mobx-react-devtools": "^6.1.1", | ||
"mocha": "^6.0.2", | ||
"nodemon": "^1.18.10", | ||
"normalize.css": "^8.0.0", | ||
"nyc": "^13.3.0", | ||
"postcss": "^7.0.14", | ||
"postcss-extend-rule": "^2.0.0", | ||
"postcss-import": "^12.0.0", | ||
"postcss-loader": "^3.0.0", | ||
"postcss-preset-env": "^6.6.0", | ||
"postcss-reporter": "^6.0.1", | ||
"postcss-url": "^8.0.0", | ||
"prettier": "^1.16.4", | ||
"pretty-ms": "^7.0.0", | ||
"proxyquire": "^2.1.0", | ||
"raf": "^3.4.0", | ||
"react": "^16.13.1", | ||
"react-dom": "^16.13.1", | ||
"react-test-renderer": "^16.8.5", | ||
"sinon": "^7.3.0", | ||
"string-replace-loader": "^2.1.1", | ||
"style-loader": "^0.23.0", | ||
"stylelint": "^9.10.1", | ||
"stylelint-config-prettier": "^5.0.0", | ||
"stylelint-config-standard": "^18.2.0", | ||
"stylelint-order": "^2.1.0", | ||
"stylelint-webpack-plugin": "^0.10.5", | ||
"terser-webpack-plugin": "^4.2.3", | ||
"url-loader": "^1.1.1", | ||
"webpack": "^4.29.6", | ||
"webpack-cli": "^3.3.0", | ||
"webpack-dev-server": "^3.2.1" | ||
} | ||
} |
Oops, something went wrong.