-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.37 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
{
"name": "@parcellab/sift",
"version": "0.0.1",
"description": "mongodb query in javascript",
"main": "index.js",
"scripts": {
"lint": "tsc --noEmit && prettier --check --ignore-unknown .",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest watch",
"test:bench": "tsx benchmark/run.ts > benchmark/output.txt",
"test:bench:csv": "tsx benchmark/run.ts --csv > benchmark/output.csv",
"test:bench:csv:unopt": "tsx --no-opt --no-sparkplug benchmark/run.ts --csv > benchmark/output-unopt.csv",
"test:bench:debug": "tsx --trace-deopt --trace-opt benchmark/run.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/parcelLab/sift.git"
},
"keywords": [
"mongo",
"sift",
"query",
"filter"
],
"author": "Chiawei Ong <chiawei.ong@parcellab.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/parcelLab/sift/issues"
},
"homepage": "https://github.com/parcelLab/sift#readme",
"devDependencies": {
"@tsconfig/node-lts": "^20.1.3",
"@tsconfig/node18": "^18.2.4",
"@tsconfig/strictest": "^2.0.5",
"@types/node": "^20.14.2",
"@vitest/coverage-v8": "^1.6.0",
"mongodb": "^6.7.0",
"prettier": "^3.3.1",
"sift": "^17.1.3",
"tsx": "^4.13.2",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
},
"engines": {
"node": ">=18"
}
}