-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
63 lines (63 loc) · 1.86 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
{
"name": "mqemitter",
"version": "6.0.2",
"description": "An Opinionated Message Queue with an emitter-style API",
"main": "mqemitter.js",
"types": "types/mqemitter.d.ts",
"scripts": {
"lint": "npm run lint:standard && npm run lint:typescript && npm run lint:markdown",
"lint:standard": "standard --verbose | snazzy",
"lint:typescript": "standard --parser @typescript-eslint/parser --plugin @typescript-eslint/eslint-plugin test/types/*.ts types/mqemitter.d.ts",
"lint:markdown": "markdownlint README.md",
"unit": "tape test/*.js",
"unit:report": "nyc --reporter=html --reporter=cobertura --reporter=text tape test/*.js",
"unit:cov": "nyc --reporter=text tape test/*.js",
"typescript": "tsc --project ./test/types/tsconfig.json",
"test:report": "npm run lint && npm run unit:report && npm run typescript",
"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 <[email protected]>",
"engines": {
"node": ">=16"
},
"keywords": [
"emitter",
"events",
"message queue",
"mq",
"publish",
"subscribe",
"pub",
"sub"
],
"license": "ISC",
"devDependencies": {
"@types/node": "^16.11.1",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"markdownlint-cli": "^0.31.1",
"nyc": "^15.0.0",
"pre-commit": "^1.2.2",
"snazzy": "^9.0.0",
"standard": "^17.0.0",
"tape": "^5.0.1",
"tsd": "^0.31.0",
"typescript": "^5.4.5"
},
"dependencies": {
"fastparallel": "^2.4.1",
"qlobber": "^8.0.1"
}
}