UNPKG

kizu

Version:

An easy-to-use, fast, and defensive Typescript/Javascript test runner designed to help you to write simple, readable, and maintainable tests.

62 lines 1.54 kB
{ "name": "kizu", "version": "3.8.0", "description": "An easy-to-use, fast, and defensive Typescript/Javascript test runner designed to help you to write simple, readable, and maintainable tests.", "license": "MIT", "main": "./dist/index.js", "bin": { "kizu": "bin/cli.js" }, "types": "dist/index.d.ts", "files": [ "bin", "dist", "!dist/**/*.map", "!dist/**/*.spec.*", "package.json", "package-lock.json" ], "repository": { "type": "git", "url": "git+https://github.com/mhweiner/kizu.git" }, "scripts": { "prepare": "npm run build", "test": "npm run build && c8 ./bin/cli.js '@(examples|src)/**/*.spec.@(ts|js)' && c8 report -r text -r html", "lint": "eslint ./ --ext .js,.ts", "build": "rm -rf ./dist && tsc" }, "homepage": "https://github.com/mhweiner/kizu", "keywords": [ "unit test", "ts unit test", "typescript unit test", "unit-test", "mocha", "jasmine", "jest", "tape", "ava", "node-tap" ], "dependencies": { "commander": "14.0.0", "deep-object-diff": "^1.1.0", "diff": "^5.0.0", "kleur": "^4.1.4", "ora": "^5.4.1", "serialize-error": "^8.1.0", "tiny-glob": "^0.2.9" }, "devDependencies": { "@types/diff": "^5.0.1", "@types/node": "^16.11.6", "@typescript-eslint/eslint-plugin": "^5.2.0", "@typescript-eslint/parser": "^5.2.0", "c8": "^7.10.0", "cjs-mock": "^0.1.0", "eslint": "^8.1.0", "ts-node": "^10.9.2", "typescript": "^5.5.2" } }