-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.09 KB
/
package.json
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
33
34
35
36
37
{
"name": "nats-queue",
"version": "",
"description": "Queue over Nats",
"main": "dist/index.js",
"repository": "https://github.com/arusakov/node-nats-queue.git",
"author": "Aleksandr Rusakov <[email protected]>",
"license": "MIT",
"files": [
"dist"
],
"scripts": {
"build": "tsc -p .",
"compile": "tsc --noEmit -p ./test",
"lint": "eslint .",
"test:all": "TS_NODE_PROJECT=test/tsconfig.json yarn test ./test/*.test.ts",
"test:coverage:html": "c8 --reporter=html --reporter=text yarn test:all",
"test:coverage": "c8 --reporter=lcovonly --reporter=text yarn test:all",
"test": "node --test --test-concurrency=1 --require=ts-node/register"
},
"devDependencies": {
"@eslint/js": "9.11.0",
"@nats-io/jetstream": "3.0.0-10",
"@nats-io/nats-core": "3.0.0-27",
"@nats-io/transport-node": "3.0.0-12",
"@types/eslint__js": "8.42.3",
"@types/node": "^20.0.0",
"c8": "10.1.2",
"eslint": "9.11.0",
"ts-node": "10.9.2",
"typescript": "5.6.2",
"typescript-eslint": "8.6.0"
},
"engines": {
"node": ">=20.0.0"
}
}