-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.05 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@unu/taube",
"version": "5.4.2",
"type": "module",
"exports": "./lib/index.js",
"engines": {
"node": ">=18.0.0"
},
"files": [
"/lib"
],
"scripts": {
"lint": "eslint --format gitlab .",
"lint-dev": "eslint .",
"lint-fix": "eslint . --fix",
"test": "NODE_OPTIONS=--loader=esmock c8 --all ava --verbose --timeout=20000 test/*.test.js test/**/*.test.js --tap --serial | tap-xunit > results.xml && c8 check-coverage",
"test-dev": "NODE_OPTIONS=--loader=esmock c8 --all --check-coverage ava test/*.test.js test/**/*.test.js --verbose --timeout=20000 --serial",
"test-coverage": "c8 report --reporter=text --reporter=text-summary",
"test-graceful-shutdown": "DEBUG=taube-* node test/shutdown-test.js",
"generate-type-definitions": "bin/generate-type-definitions.sh"
},
"repository": {
"type": "git",
"url": "[email protected]:unumotors/taube.git"
},
"author": "",
"license": "ISC",
"dependencies": {
"@promster/express": "^7.0.5",
"@promster/types": "^3.2.4",
"amqp-connection-manager": "4.1.13",
"amqplib": "0.10.3",
"celebrate": "^15.0.1",
"debug": "^4.3.3",
"express": "^4.17.3",
"got": "^12.6.0",
"joi": "^17.6.0",
"prom-client": "^14.1.0",
"serialize-error": "^11.0.0"
},
"devDependencies": {
"@cloud/eslint-config-unu": "^3.1.1",
"async-mqtt": "2.6.2",
"ava": "4.3.3",
"c8": "7.14.0",
"esmock": "2.3.1",
"md5": "2.3.0",
"mongoose": "7.3.1",
"sinon": "14.0.2",
"socket.io": "2.5.0",
"socket.io-client": "2.5.0",
"tap-xunit": "2.4.1",
"typescript": "^5.1.6"
},
"c8": {
"branches": 99,
"lines": 99,
"functions": 99,
"statements": 99,
"exclude": [
"lib/index.d.ts",
"test/pact/**/*.js",
"examples/**/*.js",
"test/*.test.js",
"test/shutdown-test.js",
"lib/components/sockend.js",
"lib/components/publisher.js",
"lib/components/subscriber.js",
"lib/components/requester.js",
"lib/components/responder.js",
".eslintrc.cjs"
]
}
}