mock-fn
Version:
Simple mockFunction test utility
42 lines (41 loc) • 989 B
JSON
{
"name": "mock-fn",
"author": "viktor-podzigun",
"version": "1.1.0",
"license": "MIT",
"description": "Simple mockFunction test utility",
"scripts": {
"test": "tsc && bun test && node ./test/all.mjs",
"format": "prettier **/*.mjs **/*.mts --write",
"formatCheck": "prettier **/*.mjs **/*.mts --check"
},
"type": "module",
"exports": "./src/mockFunction.mjs",
"types": "./src/mockFunction.d.mts",
"private": false,
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/viktor-podzigun/mock-fn.git"
},
"homepage": "https://github.com/viktor-podzigun/mock-fn",
"bugs": {
"url": "http://github.com/viktor-podzigun/mock-fn/issues"
},
"keywords": [
"test",
"mockFunction"
],
"engines": {
"node": ">=16",
"bun": ">=0.5.8"
},
"devDependencies": {
"@types/node": "^16.6.2",
"c8": "^7.13.0",
"prettier": "^2.8.8",
"typescript": "^4.9.5"
}
}