-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
73 lines (73 loc) · 1.47 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
68
69
70
71
72
73
{
"name": "event-storage",
"version": "0.8.0",
"description": "An optimized embedded event store for node.js",
"keywords": [
"event-storage",
"event-sourcing",
"eventstore",
"domain events",
"embedded",
"append-only",
"cqrs",
"log storage"
],
"homepage": "https://github.com/albe/node-event-storage",
"repository": {
"type": "git",
"url": "https://github.com/albe/node-event-storage"
},
"bugs": {
"url": "https://github.com/albe/node-event-storage/issues"
},
"scripts": {
"test": "nyc --reporter=lcov mocha test/*.spec.js",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"files": [
"*/Consumer*.js",
"*/EventStore*.js",
"*/EventStream*.js",
"*/Index*.js",
"*/IndexEntry*.js",
"*/JoinEventStream*.js",
"*/Partition*.js",
"*/Storage*.js",
"*/Watcher*.js",
"*/Clock*.js",
"*/Index/*.js",
"*/Partition/*.js",
"*/Storage/*.js",
"src/WatchesFile.js",
"src/util.js",
"index.js"
],
"license": "MIT",
"maintainers": [
{
"name": "Alexander Berl",
"email": "a.berl@outlook.com"
}
],
"engines": {
"node": ">=12.0"
},
"dependencies": {
"mkdirp": "^3.0.1"
},
"nyc": {
"include": [
"src/**/*.js"
],
"exclude": [
"bench/**/*.js"
]
},
"devDependencies": {
"coveralls": "^3.0.2",
"expect.js": "^0.3.1",
"fs-extra": "^11.1.1",
"mocha": "^10.2.0",
"nyc": "^15.0.0"
}
}