jest-html-reporter
Version:
Jest test results processor for generating a summary in HTML
62 lines (61 loc) • 1.7 kB
JSON
{
"name": "jest-html-reporter",
"version": "2.6.1",
"description": "Jest test results processor for generating a summary in HTML",
"main": "dist/main",
"unpkg": "dist/main.min.js",
"files": [
"dist",
"style"
],
"scripts": {
"eslint": "./node_modules/.bin/eslint ./src/**/*.js",
"jest": "jest --no-cache --config=jest.config.json",
"test": "npm run eslint && npm run jest",
"bundle": "rollup -c rollup.config.js",
"bundle:minified": "rollup -c rollup.config.js --environment BUILD:minified",
"bundle:all": "npm run bundle && npm run bundle:minified",
"build": "npm run test && npm run bundle:all"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Hargne/jest-html-reporter.git"
},
"keywords": [
"jest",
"html",
"reporter",
"report",
"plugin"
],
"author": "Johan Hargne",
"license": "MIT",
"bugs": {
"url": "https://github.com/Hargne/jest-html-reporter/issues"
},
"homepage": "https://github.com/Hargne/jest-html-reporter#readme",
"engines": {
"node": ">=4.8.3"
},
"dependencies": {
"dateformat": "3.0.2",
"mkdirp": "0.5.1",
"strip-ansi": "3.0.1",
"xmlbuilder": "13.0.2"
},
"peerDependencies": {
"jest": "19.x - 24.x"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.18.2",
"istanbul-api": "1.2.2",
"istanbul-reports": "1.1.4",
"jest": "^24.9.0",
"rollup": "^0.55.5",
"rollup-plugin-commonjs": "^8.4.1",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-uglify": "^3.0.0"
}
}