-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.07 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
{
"name": "eip-pipes-filters",
"version": "0.0.1",
"description": "An exploration of the Pipes & Filters pattern from Enterprise Integration Patterns",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.js",
"start:authz-service": "node authz.index.js",
"start:commit-service": "node commit.index.js",
"start:decrypt-service": "node decrypt.index.js",
"start:dedupe-service": "node dedupe.index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/seanttaylor/eip-pipes-filters.git"
},
"keywords": [
"patterns"
],
"author": "Sean T Taylor",
"license": "ISC",
"bugs": {
"url": "https://github.com/seanttaylor/eip-pipes-filters/issues"
},
"homepage": "https://github.com/seanttaylor/eip-pipes-filters#readme",
"dependencies": {
"accesscontrol": "^2.2.1",
"figlet": "^1.5.2",
"kafkajs": "^2.2.4",
"memory-cache": "^0.2.0",
"mongodb": "^5.1.0",
"rxjs": "^7.8.0"
},
"type": "module"
}