123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
- {
- "name": "vitest",
- "version": "0.23.4",
- "description": "A blazing fast unit test framework powered by Vite",
- "author": "Anthony Fu <anthonyfu117@hotmail.com>",
- "license": "MIT",
- "funding": "https://github.com/sponsors/antfu",
- "homepage": "https://github.com/vitest-dev/vitest#readme",
- "repository": {
- "type": "git",
- "url": "git+https://github.com/vitest-dev/vitest.git"
- },
- "bugs": {
- "url": "https://github.com/vitest-dev/vitest/issues"
- },
- "keywords": [
- "vite",
- "vite-node",
- "vitest",
- "test",
- "jest"
- ],
- "exports": {
- ".": {
- "types": "./dist/index.d.ts",
- "import": "./dist/index.mjs"
- },
- "./*": "./*",
- "./globals": {
- "types": "./globals.d.ts"
- },
- "./importMeta": {
- "types": "./importMeta.d.ts"
- },
- "./node": {
- "types": "./dist/node.d.ts",
- "import": "./dist/node.mjs"
- },
- "./environments": {
- "types": "./dist/environments.d.ts",
- "import": "./dist/environments.mjs"
- },
- "./browser": {
- "types": "./dist/browser.d.ts",
- "import": "./dist/browser.mjs"
- },
- "./config": {
- "types": "./config.d.ts",
- "require": "./dist/config.cjs",
- "import": "./dist/config.mjs"
- }
- },
- "main": "./dist/index.mjs",
- "module": "./dist/index.mjs",
- "types": "./dist/index.d.ts",
- "bin": {
- "vitest": "./vitest.mjs"
- },
- "files": [
- "dist",
- "bin",
- "*.d.ts",
- "*.mjs",
- "*.cjs"
- ],
- "engines": {
- "node": ">=v14.16.0"
- },
- "peerDependencies": {
- "@edge-runtime/vm": "*",
- "@vitest/browser": "*",
- "@vitest/ui": "*",
- "happy-dom": "*",
- "jsdom": "*"
- },
- "peerDependenciesMeta": {
- "@vitest/ui": {
- "optional": true
- },
- "@vitest/browser": {
- "optional": true
- },
- "happy-dom": {
- "optional": true
- },
- "jsdom": {
- "optional": true
- },
- "@edge-runtime/vm": {
- "optional": true
- }
- },
- "dependencies": {
- "@types/chai": "^4.3.3",
- "@types/chai-subset": "^1.3.3",
- "@types/node": "*",
- "chai": "^4.3.6",
- "debug": "^4.3.4",
- "local-pkg": "^0.4.2",
- "strip-literal": "^0.4.1",
- "tinybench": "^2.1.5",
- "tinypool": "^0.3.0",
- "tinyspy": "^1.0.2",
- "vite": "^2.9.12 || ^3.0.0-0"
- },
- "devDependencies": {
- "@antfu/install-pkg": "^0.1.0",
- "@edge-runtime/vm": "1.1.0-beta.31",
- "@sinonjs/fake-timers": "^9.1.2",
- "@types/diff": "^5.0.2",
- "@types/jsdom": "^20.0.0",
- "@types/micromatch": "^4.0.2",
- "@types/natural-compare": "^1.4.1",
- "@types/prompts": "^2.4.0",
- "@types/sinonjs__fake-timers": "^8.1.2",
- "@vitest/ui": "0.23.4",
- "birpc": "^0.2.3",
- "cac": "^6.7.14",
- "chai-subset": "^1.6.0",
- "cli-truncate": "^3.1.0",
- "diff": "^5.1.0",
- "event-target-polyfill": "^0.0.3",
- "execa": "^6.1.0",
- "fast-glob": "^3.2.12",
- "find-up": "^6.3.0",
- "flatted": "^3.2.7",
- "happy-dom": "^6.0.4",
- "jsdom": "^20.0.0",
- "log-update": "^5.0.1",
- "magic-string": "^0.26.3",
- "micromatch": "^4.0.5",
- "mlly": "^0.5.14",
- "natural-compare": "^1.4.0",
- "p-limit": "^4.0.0",
- "pathe": "^0.2.0",
- "picocolors": "^1.0.0",
- "pkg-types": "^0.3.5",
- "pretty-format": "^27.5.1",
- "prompts": "^2.4.2",
- "rollup": "^2.79.0",
- "source-map-js": "^1.0.2",
- "strip-ansi": "^7.0.1",
- "typescript": "^4.8.3",
- "vite-node": "0.23.4",
- "ws": "^8.8.1"
- },
- "scripts": {
- "build": "rimraf dist && rollup -c",
- "dev": "cross-env NODE_OPTIONS=\"--max-old-space-size=8192\" rollup -c --watch -m inline"
- }
- }
|