-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
34 lines (34 loc) · 905 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
{
"name": "sql-event-store",
"version": "1.0.2",
"description": "Demonstration of a SQL event store with de-duplication and guaranteed ordering. This event store can be ported to most SQL RDBMS and accessed from an number of writers, including high-load serverless functions. ",
"main": "test-sqlite.js",
"scripts": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mattbishop/sql-event-store.git"
},
"keywords": [
"SQL",
"Event",
"Store",
"Event",
"Source",
"CQRS"
],
"author": "mattbishop",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/mattbishop/sql-event-store/issues"
},
"homepage": "https://github.com/mattbishop/sql-event-store#readme",
"dependencies": {
"pg": "^8.7.3",
"sql.js": "^1.7.0",
"tape": "^5.5.3",
"tape-promise": "^4.0.0",
"uuid": "^8.3.2"
}
}