-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.35 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
{
"name": "@doughtnerd/message-store-connector",
"description": "NodeJS client library for Eventide Project's Message DB",
"keywords": [
"Node",
"Eventide",
"Message DB",
"event-sourcing"
],
"repository": {
"url": "https://github.com/doughtnerd/message-store-connector"
},
"scripts": {
"dev": "ts-node --project tsconfig.json src/index.ts",
"build": "tsc --project tsconfig.build.json",
"test": "jest",
"test:unit": "jest --config=./jest.unit.config.ts",
"test-coverage": "jest --ci --coverage",
"test:docker": "docker-compose -f docker-compose.test.yml up --build --exit-code-from unit unit",
"test-coverage:docker": "docker-compose -f docker-compose.test.yml up --build --exit-code-from coverage coverage"
},
"version": "1.10.1",
"main": "dist/index.js",
"author": "Chris Carlson",
"license": "MIT",
"private": false,
"types": "dist/index.d.ts",
"files": [
"*"
],
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"pg": "^8.7.3",
"promise-poller": "^1.9.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^17.0.45",
"@types/pg": "^8.6.5",
"@types/promise-poller": "^1.7.1",
"@types/uuid": "^8.3.4",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
}
}