|
123456789101112131415161718192021222324252627282930313233 |
- {
- "name": "@vitest/spy",
- "type": "module",
- "version": "0.29.8",
- "description": "Lightweight Jest compatible spy implementation",
- "license": "MIT",
- "repository": {
- "type": "git",
- "url": "git+https://github.com/vitest-dev/vitest.git",
- "directory": "packages/spy"
- },
- "sideEffects": false,
- "exports": {
- ".": {
- "types": "./dist/index.d.ts",
- "import": "./dist/index.js"
- },
- "./*": "./*"
- },
- "main": "./dist/index.js",
- "module": "./dist/index.js",
- "types": "./dist/index.d.ts",
- "files": [
- "dist"
- ],
- "dependencies": {
- "tinyspy": "^1.0.2"
- },
- "scripts": {
- "build": "rimraf dist && rollup -c",
- "dev": "rollup -c --watch"
- }
- }
|