forked from thenativeweb/node-cqrs-eventdenormalizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.59 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
{
"author": "adrai",
"name": "cqrs-eventdenormalizer",
"version": "1.18.0",
"private": false,
"main": "index.js",
"engines": {
"node": ">=0.8.0"
},
"directories": {
"lib": "./lib"
},
"dependencies": {
"async": "^3.2.4",
"debug": "^4.3.4",
"dotty": "^0.1.2",
"flat": "5.0.2",
"jsondate": "0.0.1",
"lodash": "^4.17.21",
"parent-require": "1.0.0",
"sift": "5.0.0",
"tolerance": "1.0.0",
"uuid": "^9.0.0",
"viewmodel": "github:eCollect/node-viewmodel"
},
"devDependencies": {
"eslint": ">=1.0.0",
"expect.js": ">= 0.1.2",
"mocha": "^10.2.0",
"mongodb": "^5.0.1",
"redis": "^4.6.4",
"tingodb": ">= 0.0.1"
},
"description": "Node-cqrs-eventdenormalizer is a node.js module that implements the cqrs pattern. It can be very useful as eventdenormalizer component if you work with (d)ddd, cqrs, domain, host, etc.",
"keywords": [
"cqrs",
"cqs",
"ddd",
"dddd",
"command",
"event",
"eventdenormalizer",
"domain"
],
"homepage": "https://github.com/eCollect/node-cqrs-eventdenormalizer",
"repository": {
"type": "git",
"url": "[email protected]:eCollect/node-cqrs-eventdenormalizer.git"
},
"bugs": {
"url": "https://github.com/eCollect/node-cqrs-eventdenormalizer/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://raw.github.com/adrai/node-cqrs-eventdenormalizer/master/licence"
}
],
"scripts": {
"unit-tests": "mocha test/unit -R spec -t 6000 --recursive --exit",
"integration-tests": "mocha test/integration -R spec -t 6000 --exit"
}
}