-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 759 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 759 Bytes
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": "easy-source",
"version": "2.0.3",
"description": "From zero to event sourcing",
"author": "Chris Baker <mail.chris.baker@gmail.com>",
"license": "MIT",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist/*"
],
"keywords": [
"event",
"sourcing",
"aggregate",
"root",
"snapshot",
"projection"
],
"scripts": {
"prepare": "rollup -c",
"test": "node --import tsx --experimental-test-coverage --test test/main.test.ts"
},
"devDependencies": {
"@rollup/plugin-typescript": "^12.1.2",
"@types/node": "^22.14.1",
"rollup": "^4.39.0",
"tslib": "^2.8.1",
"tsx": "^4.19.3",
"typescript": "^5.8.3"
}
}