UNPKG

ts-jest-mocker

Version:

Powerful, lightweight and TypeScript friendly library that extends Jest with capability of mocking classes and interfaces.

52 lines (51 loc) 1.38 kB
{ "name": "ts-jest-mocker", "version": "1.3.0", "description": "Powerful, lightweight and TypeScript friendly library that extends Jest with capability of mocking classes and interfaces.", "publishConfig": { "access": "public" }, "main": "lib/lib/index.js", "typings": "lib/lib/index.d.ts", "scripts": { "prepare": "husky install", "test": "jest", "build": "rimraf ./lib && tsc", "format:check": "prettier . --check", "format": "prettier . --write" }, "repository": { "type": "git", "url": "git+https://github.com/dariosn85/ts-jest-mocker.git" }, "keywords": [ "jest", "typescript", "mock", "class", "interface", "unit", "tests" ], "author": "Dario Snajder", "license": "ISC", "bugs": { "url": "https://github.com/dariosn85/ts-jest-mocker/issues" }, "homepage": "https://github.com/dariosn85/ts-jest-mocker#readme", "devDependencies": { "husky": "^8.0.3", "prettier": "^3.2.4", "rimraf": "^3.0.2", "ts-jest": "^29.2.6", "ts-node": "^10.9.2", "typescript": "^4.7.4" }, "dependencies": { "@types/jest": "^28.1.7 || ^29.5.14", "jest": "^28.1.3 || ^29.0.0" }, "files": [ "lib/lib/*" ] }