-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (27 loc) · 740 Bytes
/
package.json
File metadata and controls
28 lines (27 loc) · 740 Bytes
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
{
"author": "Mike Nichols <nichols.mike.s@gmail.com>"
,"name" : "node-event-store"
,"description": "event sourcing support using node streams"
,"keywords": ["cqrs", "eventsource", "ddd", "dddd", "eventstore"]
,"repository": {
"type": "git"
,"url": "git://github.com/mnichols/node-event-store.git"
}
,"private" : false
,"version" : "0.0.5"
,"engines": {
"node": ">=0.7.7"
,"npm": "1.x"
}
,"dependencies" : {
"coffee-script": "latest"
,"eventemitter2": "latest"
,"event-stream": "latest"
,"map-stream": "latest"
}
,"devDependencies" : {
"mocha": "latest"
,"chai": "latest"
}
,"main" : "./index.js"
}