-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
62 lines (62 loc) · 1.41 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
{
"author": "adrai",
"name": "cqrs-saga",
"version": "1.11.14",
"private": false,
"main": "index.js",
"engines": {
"node": ">=0.8.0"
},
"directories": {
"lib": "./lib"
},
"dependencies": {
"async": "1.5.2",
"debug": "3.1.0",
"dotty": "0.0.2",
"jsondate": "0.0.1",
"lodash": "4.17.19",
"parent-require": "1.0.0",
"tolerance": "1.0.0",
"uuid": "3.3.2"
},
"devDependencies": {
"azure-storage": ">=0.3.0",
"cradle": ">=0.6.7",
"eslint": ">=1.0.0",
"expect.js": ">= 0.1.2",
"mocha": "3.x.x",
"mongodb": "2.1.x",
"redis": ">= 0.10.1",
"tingodb": ">= 0.0.1"
},
"description": "Node-cqrs-saga is a node.js module that helps to implement the sagas in cqrs. It can be very useful as domain component if you work with (d)ddd, cqrs, eventdenormalizer, host, etc.",
"keywords": [
"cqrs",
"saga",
"eventsourcing",
"ddd",
"dddd",
"command",
"event",
"eventdenormalizer",
"domain"
],
"homepage": "https://github.com/adrai/node-cqrs-saga",
"repository": {
"type": "git",
"url": "[email protected]:adrai/node-cqrs-saga.git"
},
"bugs": {
"url": "https://github.com/adrai/node-cqrs-saga/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://raw.github.com/adrai/node-cqrs-saga/master/licence"
}
],
"scripts": {
"test": "mocha test/unit && mocha test/integration"
}
}