forked from lorenzofox3/mongoose-fuzzy-search
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 967 Bytes
/
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
{
"name": "@georges-tech/mongoose-fuzzy-search",
"version": "0.0.1",
"description": "fuzzy search based on trigrams for mongoose odm",
"main": "./index.js",
"type": "module",
"exports": {
"import": "./index.js",
"require": "./index.cjs"
},
"directories": {
"test": "test"
},
"keywords": [
"mongoose",
"mongodb",
"fuzzy",
"trigram",
"ngram",
"mongo",
"search",
"fuzzy search"
],
"files": [
"index.js",
"index.cjs"
],
"scripts": {
"build": "rollup -c rollup.js",
"test:unit": "node test/index.js",
"test:int": "node test/int/index.js",
"test": "npm run test:unit && npm run test:int"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@rollup/plugin-commonjs": "~15.1.0",
"@rollup/plugin-node-resolve": "~9.0.0",
"lodash.deburr": "~4.1.0",
"lodash.set": "~4.3.2",
"mongoose": "~5.10.9",
"rollup": "~2.32.1",
"zora": "~4.0.0"
}
}