-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
40 lines (40 loc) · 963 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
38
39
40
{
"name": "sourced-repo-mongo",
"version": "0.0.0-development",
"description": "mongo data store and repository for sourced-style event sourcing models",
"main": "index.js",
"directories": {
"test": "test"
},
"dependencies": {
"debug": "4.3.1",
"lodash": "4.17.21",
"mongodb": "3.6.9",
"sourced": "2.0.8"
},
"devDependencies": {
"jest": "27.0.4",
"mocha": "9.0.0",
"should": "13.2.3"
},
"scripts": {
"test": "mocha test -R spec --exit",
"jest": "jest --coverage --forceExit"
},
"repository": {
"type": "git",
"url": "git://github.com/mateodelnorte/sourced-repo-mongo.git"
},
"keywords": [
"sourced",
"eventsourcing",
"eventsource",
"event-source"
],
"author": "[email protected]",
"license": "ISC",
"bugs": {
"url": "https://github.com/mateodelnorte/sourced-repo-mongo/issues"
},
"homepage": "https://github.com/mateodelnorte/sourced-repo-mongo"
}