@babelqueue/core 0.1.0 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +9 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@babelqueue/core",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "Polyglot Queues, Simplified — the Node/TypeScript core: the canonical BabelQueue wire-envelope codec, contracts and dead-letter helpers.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"queue",
|
|
@@ -48,14 +48,20 @@
|
|
|
48
48
|
"scripts": {
|
|
49
49
|
"build": "tsup",
|
|
50
50
|
"typecheck": "tsc --noEmit",
|
|
51
|
-
"
|
|
51
|
+
"lint": "eslint src test",
|
|
52
|
+
"test": "node --import tsx --test test/codec.test.ts test/dead-letter.test.ts test/conformance.test.ts test/overhead.test.ts",
|
|
53
|
+
"coverage": "c8 --check-coverage --lines 90 --functions 90 --branches 85 --reporter=text npm test",
|
|
52
54
|
"prepublishOnly": "npm run build"
|
|
53
55
|
},
|
|
54
56
|
"devDependencies": {
|
|
57
|
+
"@eslint/js": "^10.0.1",
|
|
55
58
|
"@types/node": "^22",
|
|
59
|
+
"c8": "^11.0.0",
|
|
60
|
+
"eslint": "^10.4.1",
|
|
56
61
|
"tsup": "^8",
|
|
57
62
|
"tsx": "^4",
|
|
58
|
-
"typescript": "^5.5"
|
|
63
|
+
"typescript": "^5.5",
|
|
64
|
+
"typescript-eslint": "^8.60.1"
|
|
59
65
|
},
|
|
60
66
|
"publishConfig": {
|
|
61
67
|
"access": "public"
|