|
| 1 | +{ |
| 2 | + "name": "jest-react-reporter", |
| 3 | + "version": "0.0.0", |
| 4 | + "description": "Reporter for Jest written in React", |
| 5 | + "repository": "jest-community/jest-react-reporter", |
| 6 | + "license": "MIT", |
| 7 | + "author": "Simen Bekkhus <[email protected]>", |
| 8 | + "files": [ |
| 9 | + "lib/" |
| 10 | + ], |
| 11 | + "main": "lib/", |
| 12 | + "engines": { |
| 13 | + "node": ">=8" |
| 14 | + }, |
| 15 | + "peerDependencies": { |
| 16 | + "jest": "^24.9.0 || ^25.0.0" |
| 17 | + }, |
| 18 | + "scripts": { |
| 19 | + "prepare": "yarn build", |
| 20 | + "lint": "eslint . --ignore-pattern '!.eslintrc.js' --ext js,ts,tsx", |
| 21 | + "prettylint": "prettylint docs/**/*.md README.md package.json", |
| 22 | + "test": "jest", |
| 23 | + "build": "babel --extensions .js,.ts,.tsx src --out-dir lib", |
| 24 | + "typecheck": "tsc -p ." |
| 25 | + }, |
| 26 | + "devDependencies": { |
| 27 | + "@babel/cli": "^7.7.0", |
| 28 | + "@babel/core": "^7.7.2", |
| 29 | + "@babel/preset-env": "^7.7.1", |
| 30 | + "@babel/preset-react": "^7.7.0", |
| 31 | + "@babel/preset-typescript": "^7.7.2", |
| 32 | + "@commitlint/cli": "^8.2.0", |
| 33 | + "@commitlint/config-conventional": "^8.2.0", |
| 34 | + "@semantic-release/changelog": "^3.0.5", |
| 35 | + "@semantic-release/git": "^7.0.18", |
| 36 | + "@types/jest": "^24.0.15", |
| 37 | + "@types/node": "^12.12.7", |
| 38 | + "@types/react": "^16.9.11", |
| 39 | + "@typescript-eslint/eslint-plugin": "^2.6.1", |
| 40 | + "@typescript-eslint/parser": "^2.6.1", |
| 41 | + "babel-jest": "^25.0.0", |
| 42 | + "eslint": "^6.6.0", |
| 43 | + "eslint-config-prettier": "^6.5.0", |
| 44 | + "eslint-plugin-import": "^2.18.2", |
| 45 | + "eslint-plugin-jest": "^23.0.3", |
| 46 | + "eslint-plugin-node": "^10.0.0", |
| 47 | + "eslint-plugin-prettier": "^3.1.1", |
| 48 | + "eslint-plugin-react": "^7.16.0", |
| 49 | + "husky": "^3.0.9", |
| 50 | + "jest": "^25.0.0", |
| 51 | + "lint-staged": "^9.4.2", |
| 52 | + "prettier": "^1.19.1", |
| 53 | + "prettylint": "^1.0.0", |
| 54 | + "semantic-release": "^15.13.30", |
| 55 | + "typescript": "^3.7.2" |
| 56 | + }, |
| 57 | + "prettier": { |
| 58 | + "proseWrap": "always", |
| 59 | + "singleQuote": true, |
| 60 | + "trailingComma": "all" |
| 61 | + }, |
| 62 | + "lint-staged": { |
| 63 | + "*.{js,ts,tsx}": [ |
| 64 | + "eslint --fix", |
| 65 | + "git add" |
| 66 | + ], |
| 67 | + "*.{md,json}": [ |
| 68 | + "prettier --write", |
| 69 | + "git add" |
| 70 | + ] |
| 71 | + }, |
| 72 | + "jest": { |
| 73 | + "testEnvironment": "node" |
| 74 | + }, |
| 75 | + "commitlint": { |
| 76 | + "extends": [ |
| 77 | + "@commitlint/config-conventional" |
| 78 | + ] |
| 79 | + }, |
| 80 | + "husky": { |
| 81 | + "hooks": { |
| 82 | + "commit-msg": "commitlint -e $HUSKY_GIT_PARAMS", |
| 83 | + "pre-commit": "lint-staged" |
| 84 | + } |
| 85 | + }, |
| 86 | + "release": { |
| 87 | + "plugins": [ |
| 88 | + "@semantic-release/commit-analyzer", |
| 89 | + "@semantic-release/release-notes-generator", |
| 90 | + "@semantic-release/changelog", |
| 91 | + "@semantic-release/npm", |
| 92 | + "@semantic-release/git", |
| 93 | + "@semantic-release/github" |
| 94 | + ] |
| 95 | + }, |
| 96 | + "dependencies": { |
| 97 | + "@jest/reporters": "^25.0.0", |
| 98 | + "@jest/test-result": "^25.0.0", |
| 99 | + "@jest/types": "^25.0.0", |
| 100 | + "ink": "^2.5.0", |
| 101 | + "jest-util": "^25.0.0", |
| 102 | + "react": "^16.11.0", |
| 103 | + "slash": "^3.0.0" |
| 104 | + } |
| 105 | +} |
0 commit comments