forked from marcghorayeb/event-sourcing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 820 Bytes
/
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
{
"name": "event-sourcing",
"version": "0.0.2",
"description": "NodeJS Event-sourcing POC",
"keywords": [
"cqrs",
"event",
"sourcing",
"event-sourcing",
"eventsource",
"eventsourcing",
"ddd",
"eventstore"
],
"main": "event-sourcing.js",
"scripts": {
"test": "clear && mocha test"
},
"repository": {
"type": "git",
"url": "git://github.com/marcghorayeb/event-sourcing"
},
"author": "Marc Ghorayeb <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/marcghorayeb/event-sourcing/issues"
},
"homepage": "https://github.com/marcghorayeb/event-sourcing",
"dependencies": {
"amqplib": "0.3.2",
"async": "0.9.0",
"chai": "2.3.0",
"lodash": "3.7.0",
"mkdirp": "0.5.0",
"node-uuid": "1.4.3"
}
}