-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.49 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
57
58
59
60
61
62
63
{
"name": "kylfil",
"version": "1.4.2",
"description": "A tiny database-agnostic Event Store",
"author": "Polad Mirzayev <polad@web3studio.io>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/polad/kylfil.git"
},
"type": "commonjs",
"packageManager": "yarn@4.8.0",
"devDependencies": {
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@eslint/js": "^9.38.0",
"@semantic-release/git": "^10.0.1",
"eslint": "^9.38.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^16.4.0",
"husky": "^9.1.7",
"jest": "^30.2.0",
"jest-junit": "^16.0.0",
"lint-staged": "^16.2.4",
"pinst": "^3.0.0",
"prettier": "3.6.2",
"semantic-release": "^25.0.1"
},
"lint-staged": {
"*.js": [
"eslint",
"prettier --write --ignore-unknown"
],
"!(*.js)": "prettier --write --ignore-unknown"
},
"scripts": {
"test": "jest --verbose --coverage",
"prepare": "husky"
},
"exports": {
".": "./src/index.js",
"./eventSourcing": "./src/eventSourcing.js",
"./mysql": "./src/mysql/index.js",
"./sqlite": "./src/sqlite/index.js"
},
"files": [
"LICENSE",
"README.md",
"src/eventSourcing.js",
"src/index.js",
"src/lib/SqlProvider.js",
"src/lib/utils.js",
"src/mysql/index.js",
"src/postgres/index.js",
"src/sqlite/index.js"
],
"keywords": [
"eventstore",
"event-store",
"eventsourcing",
"event-sourcing"
]
}