forked from triggerdotdev/trigger.dev
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 967 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 967 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"name": "runtime_tests",
"version": "0.0.0",
"private": true,
"license": "MIT",
"dependencies": {
"@hono/node-server": "^1.3.1",
"@trigger.dev/hono": "workspace:*",
"@trigger.dev/sdk": "workspace:*",
"hono": "^3.10.3"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20221111.1",
"@types/node": "18",
"@types/supertest": "^2.0.12",
"bun-types": "^1.0.15",
"supertest": "^6.3.3",
"typescript": "^5.3.0",
"vitest": "^0.34.3",
"wrangler": "^3.18.0"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"test": "pnpm run test:wrangler && pnpm run test:bun && pnpm run test:node && pnpm run test:deno",
"test:wrangler": "vitest --run --config ./tests/wrangler/vitest.config.ts",
"test:bun": "bun test tests/bun",
"test:node": "vitest --run --config ./tests/node/vitest.config.ts",
"test:deno": "deno test --no-check --no-config --allow-read --allow-env tests/deno"
}
}