-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.56 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.56 KB
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
{
"name": "mqemitter",
"version": "7.1.0",
"description": "An Opinionated Message Queue with an emitter-style API",
"main": "mqemitter.js",
"types": "mqemitter.d.ts",
"scripts": {
"lint:fix": "eslint --fix",
"lint": "npm run lint:standard && npm run lint:markdown",
"lint:standard": "eslint",
"lint:markdown": "markdownlint README.md",
"unit": "node --test test/*.js",
"unit:cov": "c8 --reporter=lcov npm run unit",
"postunit:cov": "c8 check-coverage --lines 100 --functions 100 --branches 100",
"typescript": "tsc --project ./test/types/tsconfig.json && tsc --project ./test/types2/tsconfig.json",
"test:types": "tsd",
"test": "npm run lint && npm run unit:cov && tsd && npm run typescript"
},
"pre-commit": [
"test"
],
"website": "https://github.com/mcollina/mqemitter",
"repository": {
"type": "git",
"url": "https://github.com/mcollina/mqemitter.git"
},
"bugs": {
"url": "http://github.com/mcollina/mqemitter/issues"
},
"author": "Matteo Collina <hello@matteocollina.com>",
"engines": {
"node": ">=20"
},
"keywords": [
"emitter",
"events",
"message queue",
"mq",
"publish",
"subscribe",
"pub",
"sub"
],
"license": "ISC",
"devDependencies": {
"@fastify/pre-commit": "^2.2.0",
"@types/node": "^24.0.13",
"c8": "^10.1.3",
"eslint": "^9.23.0",
"markdownlint-cli": "^0.45.0",
"neostandard": "^0.12.1",
"tsd": "^0.33.0",
"typescript": "^5.8.2"
},
"dependencies": {
"fastparallel": "^2.4.1",
"qlobber": "^8.0.1"
}
}