UNPKG

@edge-runtime/jest-environment

Version:

A Jest integration to run assertions in Edge Runtime context.

51 lines 1.23 kB
{ "name": "@edge-runtime/jest-environment", "description": "A Jest integration to run assertions in Edge Runtime context.", "homepage": "https://edge-runtime.vercel.app/packages/jest-environment", "version": "4.0.0", "main": "dist/index.js", "repository": { "directory": "packages/jest-environment", "type": "git", "url": "git+https://github.com/vercel/edge-runtime.git" }, "bugs": { "url": "https://github.com/vercel/edge-runtime/issues" }, "keywords": [ "edge", "edge-runtime", "functions", "jest", "runtime", "standard", "testing", "web" ], "dependencies": { "@jest/environment": "29.5.0", "@jest/fake-timers": "29.5.0", "jest-mock": "29.5.0", "jest-util": "29.5.0", "@edge-runtime/vm": "5.0.0" }, "engines": { "node": ">=18" }, "files": [ "dist" ], "license": "MIT", "publishConfig": { "access": "public" }, "types": "dist/index.d.ts", "scripts": { "build": "tsc --project tsconfig.prod.json", "clean": "pnpm run clean:node && pnpm run clean:build", "clean:build": "rm -rf dist", "clean:node": "rm -rf node_modules", "prebuild": "pnpm run clean:build", "test": "jest" } }