UNPKG

jest-timing-reporter

Version:

A Jest reporter that collects test execution time into snapshots files as JSON which can be used later with [jest-timing-action](https://github.com/javierfernandes/jest-timing-action).

39 lines (38 loc) 897 B
{ "name": "jest-timing-reporter", "version": "1.0.1", "main": "index.js", "author": "Javier Fernandes <javier.fernandes@gmail.com>", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/javierfernandes/jest-timing-reporter.git" }, "keywords": [ "Jest", "Reporter", "JavaScript" ], "bugs": { "url": "https://github.com/javierfernandes/jest-timing-reporter/issues" }, "homepage": "https://github.com/javierfernandes/jest-timing-reporter#readme", "scripts": { "lint": "eslint index.js", "package": "ncc build index.js -o dist", "test": "eslint index.js && jest" }, "devDependencies": { "@zeit/ncc": "^0.22.1", "eslint": "^6.3.0", "husky": "^4.2.5" }, "dependencies": { "ramda": "^0.27.0" }, "husky": { "hooks": { "pre-commit": "npm run package && git add dist" } } }