|
| 1 | +{ |
| 2 | + "name": "codeceptjs-failure-logger", |
| 3 | + "version": "1.0.0", |
| 4 | + "description": "Logging for CodeceptJS failed tests", |
| 5 | + "repository": { |
| 6 | + "type": "git", |
| 7 | + "url": "https://github.com/kobenguyent/codeceptjs-failure-logger.git" |
| 8 | + }, |
| 9 | + "scripts": { |
| 10 | + "test": "nyc mocha -r ts-node/register test/**/*_test.ts --timeout 10000", |
| 11 | + "semantic-release": "semantic-release", |
| 12 | + "build": "tsc" |
| 13 | + }, |
| 14 | + "keywords": [ |
| 15 | + "codeceptJS", |
| 16 | + "codeceptjs", |
| 17 | + "logging", |
| 18 | + "codeceptjs-loggers" |
| 19 | + ], |
| 20 | + "author": "kobenguyent <kobenguyent@gmail.com>", |
| 21 | + "license": "MIT", |
| 22 | + "bugs": { |
| 23 | + "url": "https://github.com/kobenguyent/codeceptjs-failure-logger/issues" |
| 24 | + }, |
| 25 | + "homepage": "https://github.com/kobenguyent/codeceptjs-failure-logger#readme", |
| 26 | + "main": "dist/src/index.js", |
| 27 | + "types": "dist/src/index.d.ts", |
| 28 | + "devDependencies": { |
| 29 | + "@commitlint/cli": "11.0.0", |
| 30 | + "@commitlint/config-conventional": "11.0.0", |
| 31 | + "@istanbuljs/nyc-config-typescript": "^1.0.2", |
| 32 | + "@types/mocha": "^9.1.0", |
| 33 | + "@types/node": "^14.18.52", |
| 34 | + "codeceptjs": "^3.3.0", |
| 35 | + "eslint": "^6.6.0", |
| 36 | + "eslint-config-airbnb-base": "^14.0.0", |
| 37 | + "eslint-plugin-import": "^2.18.2", |
| 38 | + "husky": "^4.0.2", |
| 39 | + "mocha": "^9.2.1", |
| 40 | + "nyc": "^15.1.0", |
| 41 | + "semantic-release": "^19.0.2", |
| 42 | + "standard-version": "^9.1.1", |
| 43 | + "ts-node": "^10.5.0" |
| 44 | + }, |
| 45 | + "files": [ |
| 46 | + "dist/*" |
| 47 | + ], |
| 48 | + "peerDependencies": { |
| 49 | + "codeceptjs": "^3.4.1" |
| 50 | + }, |
| 51 | + "dependencies": { |
| 52 | + "axios": "^0.21.1", |
| 53 | + "chalk": "^4.1.0", |
| 54 | + "expect": "^29.5.0", |
| 55 | + "format-json": "^1.0.3", |
| 56 | + "tinyurl": "^1.1.4", |
| 57 | + "typescript": "^4.5.5" |
| 58 | + }, |
| 59 | + "config": { |
| 60 | + "commitizen": { |
| 61 | + "path": "cz-conventional-changelog" |
| 62 | + } |
| 63 | + }, |
| 64 | + "husky": { |
| 65 | + "hooks": { |
| 66 | + "commit-msg": "commitlint -E HUSKY_GIT_PARAMS" |
| 67 | + } |
| 68 | + }, |
| 69 | + "nyc": { |
| 70 | + "extends": "@istanbuljs/nyc-config-typescript", |
| 71 | + "lines": 40, |
| 72 | + "check-coverage": true, |
| 73 | + "all": true, |
| 74 | + "include": [ |
| 75 | + "src/**/!(*.test.*).[tj]s?(x)" |
| 76 | + ], |
| 77 | + "exclude": [ |
| 78 | + "src/_tests_/**/*.*" |
| 79 | + ], |
| 80 | + "reporter": [ |
| 81 | + "html", |
| 82 | + "lcov", |
| 83 | + "text", |
| 84 | + "text-summary" |
| 85 | + ], |
| 86 | + "report-dir": "coverage" |
| 87 | + } |
| 88 | +} |
0 commit comments