-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.52 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.52 KB
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
{
"name": "cqrs-eventstore",
"version": "1.1.1",
"description": "CQRS and Event Sourcing for Node.js 4+, supporting snapshots, built-in cache, hooks and payload compression",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/jd78/NodeEventStore.git"
},
"bugs": {
"url": "https://github.com/jd78/NodeEventStore.git/issues"
},
"author": "Gennaro Del Sorbo <gennaro.delsorbo@gmail.com>",
"license": "MIT",
"files": [
"index.js",
"lib",
"LICENSE",
"README.md",
"demo"
],
"keywords": [
"DDD",
"Event Sourcing",
"Event Store",
"CQRS"
],
"homepage": "https://github.com/jd78/NodeEventStore",
"dependencies": {
"clone": "^1.0.2",
"lokijs": "^1.3.10",
"moment": "^2.10.6",
"node-cache": "^3.0.0",
"underscore": "^1.8.3",
"uuid": "^3.0.0"
},
"devDependencies": {
"gulp": "^3.9.1",
"gulp-mocha": "^3.0.1",
"mocha": "^3.1.2",
"rimraf": "^2.5.4",
"should": "^11.1.1",
"sinon": "^1.17.6"
},
"scripts": {
"clean-demo-lib": "node_modules/.bin/rimraf demo/node_modules/cqrs-eventstore",
"setup": "npm install && npm run clean-demo-lib && cd demo && npm install && cd ..",
"start": "node demo/event-store-demo.js",
"test": "node_modules/.bin/gulp",
"test-debug": "node --debug-brk node_modules/gulp/bin/gulp.js"
},
"contributors": [
"Gennaro Del Sorbo (https://github.com/jd78)",
"Jordan Morris <gitacode.jordanmorris@spamgourmet.com> (https://github.com/jordanmorris)"
]
}