-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.32 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
{
"name": "express-ipc",
"version": "1.1.0",
"description": "A simple IPC server with express-like request and route handling that also supports broadcasting to multiple channels.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prebuild": "npm test",
"build": "webpack",
"prepare": "husky install",
"test:watch": "jest --watch",
"test": "jest --passWithNoTests",
"test:coverage": "jest --coverage",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/h-sifat/express-ipc.git"
},
"keywords": [
"IPC",
"TCP",
"axios",
"pubsub",
"express",
"node-ipc",
"socket.io",
"websocket",
"express-ipc",
"unix domain socket",
"windows named pipe",
"jayson"
],
"author": "Muhammad Sifat Hossain",
"license": "MIT",
"bugs": {
"url": "https://github.com/h-sifat/express-ipc/issues"
},
"homepage": "https://github.com/h-sifat/express-ipc#readme",
"devDependencies": {
"@types/jest": "^29.2.0",
"@types/node": "^18.11.6",
"husky": "^8.0.0",
"ts-jest": "^29.0.3",
"ts-loader": "^9.4.1",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"handy-types": "^2.0.0",
"path-to-regexp": "^6.2.1"
}
}