UNPKG

terse-mock

Version:

Easy mock creation and automocking

63 lines (62 loc) 1.32 kB
{ "name": "terse-mock", "version": "2.0.0", "description": "Easy mock creation and automocking", "main": "build/terse-mock.js", "files": [ "build", "LICENSE", "README.md" ], "keywords": [ "typescript", "test", "testing", "mocking", "stub", "unittesting" ], "repository": { "type": "git", "url": "https://github.com/ayartsev7/terse-mock" }, "bugs": { "url": "https://github.com/ayartsev7/terse-mock/issues" }, "scripts": { "test": "jest --coverage", "build": "tsc" }, "author": { "name": "Anton Yartsev", "email": "anton.yartsev@gmail.com", "url": "https://github.com/ayartsev7" }, "license": "MIT", "devDependencies": { "@types/jest": "^29.5.13", "@typescript-eslint/eslint-plugin": "^8.8.0", "@typescript-eslint/parser": "^8.8.0", "@stylistic/eslint-plugin": "^2.9.0", "coveralls": "^3.1.1", "eslint": "^8.57.0", "jest": "29.7.0", "json-summary": "^1.3.0", "ts-jest": "^29.2.5", "typescript": "^5.6.2" }, "type": "module", "jest": { "collectCoverage": true, "coverageReporters": [ "lcov", "json-summary" ], "testPathIgnorePatterns": [ "<rootDir>/node_modules/" ], "transform": { "\\.(ts|tsx)$": "ts-jest" } } }