UNPKG

@chubbyjs/chubbyjs-mock

Version:

A very strict mocking library for class based objects.

58 lines (57 loc) 1.22 kB
{ "name": "@chubbyjs/chubbyjs-mock", "version": "1.1.1", "description": "A very strict mocking library for class based objects.", "keywords": [ "chubbyjs", "jest", "mock" ], "author": "Dominik Zogg", "license": "MIT", "repository": "chubbyjs/chubbyjs-mock", "scripts": { "cs-fix": "prettier --write src tests", "cs": "prettier --check src tests", "test": "jest", "infection": "stryker run", "build": "tsc", "prepare": "rm -Rf dist && npm run build && npm run cs && npm run test" }, "jest": { "preset": "ts-jest", "testEnvironment": "node", "collectCoverageFrom": [ "src/**/*.ts" ], "coverageThreshold": { "global": { "lines": 100 } } }, "prettier": { "printWidth": 120, "tabWidth": 4, "singleQuote": true, "trailingComma": "all" }, "files": [ "dist" ], "engines": { "node": ">=12" }, "devDependencies": { "@stryker-mutator/core": "^5.3.0", "@stryker-mutator/jest-runner": "^5.3.0", "@types/jest": "^27.0.1", "jest": "^27.1.0", "prettier": "2.3.2", "ts-jest": "^27.0.5", "typescript": "^4.4.2" }, "publishConfig": { "access": "public" } }