snoop
Version:
Easy breezy test spies fo sheezy.
41 lines (40 loc) • 943 B
JSON
{
"name": "snoop",
"version": "2.0.0",
"description": "Easy breezy test spies fo sheezy.",
"repository": "github:therealparmesh/snoop",
"license": "MIT",
"author": "Parmesh Krishen",
"type": "module",
"exports": {
".": {
"types": "./types.d.ts",
"import": "./src/index.js"
}
},
"main": "./src/index.js",
"types": "./types.d.ts",
"files": [
"snoop.gif",
"src/index.js",
"types.d.ts"
],
"scripts": {
"format": "bunx prettier --write .",
"format:check": "bunx prettier --check .",
"prepack": "bun run test",
"release": "bunx standard-version",
"test": "bun test --coverage"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
},
"packageManager": "bun@1.3.14",
"standard-version": {
"releaseCommitMessageFormat": "chore: release {{currentTag}}",
"scripts": {
"postchangelog": "bunx prettier --write CHANGELOG.md"
}
}
}