-
Notifications
You must be signed in to change notification settings - Fork 115
/
Copy pathpackage.json
67 lines (67 loc) · 1.4 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
64
65
66
67
{
"author": "adrai",
"name": "eventstore",
"version": "1.15.5",
"contributors": [
{
"name": "Adriano Raiano",
"email": "[email protected]"
},
{
"name": "Jan Muehlemann",
"email": "[email protected]"
}
],
"private": false,
"repository": {
"type": "git",
"url": "[email protected]:adrai/node-eventstore.git"
},
"description": "Node-eventstore is a node.js module for multiple databases. It can be very useful as eventstore if you work with (d)ddd, cqrs, eventsourcing, commands and events, etc.",
"keywords": [
"cqrs",
"eventstore",
"ddd",
"(d)ddd",
"eventsourcing",
"mongodb",
"redis",
"tingodb",
"azure",
"azuretable",
"inmemory",
"elasticsearch"
],
"main": "./index.js",
"directories": {
"lib": "./lib"
},
"engines": {
"node": ">=0.8.0"
},
"dependencies": {
"async": "2.6.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.3"
},
"devDependencies": {
"aws-sdk": ">=2.4.9",
"azure-storage": ">=0.10.0",
"cradle": ">=0.7.1",
"elasticsearch": ">=10.0.0",
"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"
},
"scripts": {
"test": "mocha"
}
}