-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
74 lines (74 loc) · 1.67 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": "smqp",
"version": "9.0.4",
"type": "module",
"description": "Synchronous message queueing package",
"author": {
"name": "Pål Edman",
"url": "https://github.com/paed01"
},
"main": "./dist/index.js",
"module": "./src/index.js",
"jsnext:main": "./src/index.js",
"sideEffects": false,
"types": "./types/index.d.ts",
"exports": {
"types": "./types/index.d.ts",
"import": "./src/index.js",
"require": "./dist/index.js"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/paed01/smqp.git"
},
"bugs": {
"url": "https://github.com/paed01/smqp/issues"
},
"files": [
"types",
"src",
"dist"
],
"scripts": {
"test": "mocha",
"test:lcov": "c8 -r lcov mocha --exit && npm run lint",
"posttest": "npm run dist && npm run lint && npm run toc && npm run test:md",
"test:md": "texample ./README.md,API.md",
"cov:html": "c8 -r html -r text mocha",
"dist": "babel src/**.js -d dist",
"prepack": "npm run dist",
"toc": "node ./scripts/generate-api-toc.js",
"lint": "eslint . --cache && prettier . -c --cache"
},
"keywords": [
"messaging",
"broker",
"routing",
"exchange",
"queue",
"fifo",
"shovel",
"publish",
"subscribe",
"ack",
"nack",
"reject",
"topic",
"direct",
"shovel"
],
"devDependencies": {
"@babel/cli": "^7.24.1",
"@babel/core": "^7.24.4",
"@babel/preset-env": "^7.24.4",
"c8": "^10.1.2",
"chai": "^5.1.0",
"chronokinesis": "^6.0.0",
"eslint": "^9.10.0",
"markdown-toc": "^1.2.0",
"mocha": "^11.0.1",
"prettier": "^3.2.5",
"texample": "^0.0.6"
}
}