-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.06 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
{
"name": "query-predicate",
"description": "Query Predicate Generator using Mongo Query Language",
"version": "2.1.0",
"type": "module",
"author": "Dave Tonge <dave.tonge@momentumft.co.uk> (https://github.com/davidgtonge)",
"tags": [
"mongo",
"ramda",
"predicate",
"query"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/davidgtonge/query-predicate.git"
},
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"test": "npm run build && mocha"
},
"dependencies": {
"ramda": "^0.27.1"
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "^22.15.21",
"@types/ramda": "^0.30.2",
"benchmark": "^2.1.4",
"coffee-script": ">=1.7.x",
"lodash": "^4.17.20",
"mocha": "",
"typescript": "^5.8.3",
"underscore": "^1.12.0",
"underscore-query": "^3.3.2"
}
}