-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.63 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.63 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
64
65
66
67
68
{
"name": "@drip_sync/drip",
"version": "0.2.0",
"description": "Scalable incremental sync for MongoDB aggregation pipelines",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "npx tsc --noEmit && npx eslint . && npx prettier . --check",
"test": "node --import tsx --test $(find tests -name \"*_test.ts\")",
"test-bun": "find tests -name \"*_test.ts\" | xargs -L1 bun test",
"integration": "node --import tsx --test $(find integration_tests -name \"*_test.ts\")",
"integration-bun": "find integration_tests -name \"*_test.ts\" | xargs -L1 bun test",
"coverage": "nyc npm run test",
"prepare": "npx tsc --project tsconfig.npm.json"
},
"files": [
"dist"
],
"keywords": [
"mongodb",
"aggregation",
"pipeline",
"incremental",
"sync"
],
"author": "",
"license": "ISC",
"devDependencies": {
"@tsconfig/strictest": "^2.0.5",
"@types/lodash": "^4.17.13",
"@types/node": "^22.13.4",
"eslint-config-prettier": "^10.1.1",
"mongodb-runner": "^5.8.0",
"nyc": "^17.1.0",
"prettier": "3.5.3",
"tsx": "^4.19.3",
"typescript": "^5.6.2",
"typescript-eslint": "^8.26.0",
"@types/bun": "^1.2.10"
},
"dependencies": {
"bson": "^6.10.3",
"lodash": "^4.17.21",
"mongodb": "^6.15.0",
"mongodb-resumetoken-decoder": "^1.1.2",
"zod": "^3.23.8"
},
"tsd": {
"directory": "tests"
},
"nyc": {
"reporter": [
"lcov",
"text-summary",
"text"
],
"extension": [
".ts"
],
"all": true,
"exclude": [
"example",
"coverage",
"tests",
"dist"
]
}
}