UNPKG

mockt

Version:

Joyful mocking library for Typescript and Javascript

67 lines (66 loc) 1.78 kB
{ "name": "mockt", "version": "0.8.2", "description": "Joyful mocking library for Typescript and Javascript", "main": "dist/cjs/index.js", "module": "dist/esm/index.js", "browser": "dist/esm/index.js", "types": "dist/types/index.d.ts", "react-native": "dist/esm/index.js", "author": "Nicolás Bottarini <nicolasbottarini@gmail.com>", "license": "MIT", "homepage": "https://github.com/nbottarini/mockt#readme", "repository": { "type": "git", "url": "https://github.com/nbottarini/mockt.git" }, "keywords": [ "testing", "mocking", "mock", "stub", "javascript", "typescript" ], "files": [ "dist" ], "scripts": { "build": "rollup -c", "check-all": "yarn lint && yarn test", "lint": "eslint . && tsc --noEmit", "test": "jest" }, "dependencies": { "lodash.isequalwith": "^4.4.0" }, "devDependencies": { "@babel/core": "^7.24.3", "@babel/preset-env": "^7.24.3", "@babel/preset-typescript": "^7.24.1", "@rollup/plugin-commonjs": "^25.0.7", "@rollup/plugin-node-resolve": "^15.2.3", "@rollup/plugin-terser": "^0.4.4", "@rollup/plugin-typescript": "^11.1.6", "@types/jest": "^29.5.12", "@types/lodash.isequalwith": "^4.4.9", "@typescript-eslint/eslint-plugin": "^7.4.0", "@typescript-eslint/parser": "^7.4.0", "babel-jest": "^29.7.0", "eslint": "^8.57.0", "jest": "^29.7.0", "jest-each": "^29.7.0", "jest-extended": "^4.0.2", "rollup": "^3.29.4", "rollup-plugin-dts": "^6.1.0", "rollup-plugin-exclude-dependencies-from-bundle": "^1.1.23", "tslib": "^2.6.2", "typescript": "^5.4.3" }, "publishConfig": { "registry": "https://registry.npmjs.org/" }, "engines": { "node": ">= 18.0.0" } }