-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 973 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 973 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
{
"name": "babelqueue-node-adapters",
"private": true,
"type": "module",
"description": "BabelQueue Node.js framework adapters (BullMQ, NestJS) — npm workspaces.",
"license": "MIT",
"workspaces": [
"packages/bullmq",
"packages/nestjs"
],
"scripts": {
"build": "npm run build -w @babelqueue/bullmq && npm run build -w @babelqueue/nestjs",
"typecheck": "npm run typecheck -w @babelqueue/bullmq && npm run typecheck -w @babelqueue/nestjs",
"lint": "eslint .",
"test": "npm run test -w @babelqueue/bullmq && npm run test -w @babelqueue/nestjs",
"coverage": "c8 --check-coverage --statements 90 --lines 90 --functions 90 --branches 70 --include \"packages/*/src/**\" --reporter=text-summary npm test"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^22",
"c8": "^11.0.0",
"eslint": "^10.4.1",
"tsup": "^8",
"tsx": "^4",
"typescript": "^5.5",
"typescript-eslint": "^8.60.1"
}
}