@edge-runtime/jest-expect
Version:
Custom matchers for Jest's expect to help test Request/Response instances
55 lines • 1.3 kB
JSON
{
"name": "@edge-runtime/jest-expect",
"description": "Custom matchers for Jest's expect to help test Request/Response instances",
"homepage": "https://edge-runtime.vercel.app/packages/jest-expect",
"version": "3.0.0",
"main": "dist/index.js",
"repository": {
"directory": "packages/jest-expect",
"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",
"matchers",
"runtime",
"standard",
"testing",
"web"
],
"dependencies": {
"@jest/environment": "29.5.0",
"@jest/fake-timers": "29.5.0",
"@jest/globals": "29.7.0"
},
"devDependencies": {
"@edge-runtime/jest-environment": "4.0.0"
},
"engines": {
"node": ">=18"
},
"files": [
"dist",
"index.d.ts",
"index.js"
],
"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 --no-colors"
}
}