-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.45 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.45 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
{
"name": "@js-cloud/mailman",
"version": "1.0.0",
"description": "A superfast and light-weight message broker for pub/sub communication over network. Suitable for realtime low latency applications",
"type": "module",
"module": "./dist/esm/index.js",
"main": "./dist/cjs/index.js",
"types": "./dist/esm/index.d.ts",
"files": [
"dist/**",
"README.md",
"package.json",
"package-lock.json"
],
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc -p tsconfig-cjs.json && tsc -p tsconfig-esm.json",
"prebuild": "echo 'Cleaning previous builds...' && rm -fr dist/* && echo 'Previous build cleaned!'",
"postbuild": "bash ./utils/fixup.sh",
"dev": "ts-node-dev --respawn --pretty --transpile-only sample/index.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/jscloud-org/MailMan"
},
"keywords": [
"Message Broker",
"Pub/Sub",
"efficient",
"lightweight",
"Mail man",
"data",
"pub",
"sub"
],
"author": "Jerry S Joseph",
"license": "ISC",
"dependencies": {
"@js-cloud/flashq": "^1.1.4",
"uuid": "^8.3.2",
"ws": "^8.2.3"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/uuid": "^8.3.1",
"@types/ws": "^8.2.0",
"jest": "^27.3.1",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4"
}
}