-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.2 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
{
"name": "mongodb-middleware-utils",
"version": "1.0.8",
"description": "Mongodb middleware for custom fulltext search, getting precise count of random documents and more..",
"module": "dist/esm/index.js",
"main": "dist/cjs/index.js",
"typings": "index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rm -rf dist && rollup -c --bundleConfigAsCjs",
"publish-pkg": "yarn build && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deflexable/mongodb-middleware-utils.git"
},
"bugs": {
"url": "https://github.com/deflexable/mongodb-middleware-utils/issues"
},
"homepage": "https://github.com/deflexable/mongodb-middleware-utils#readme",
"keywords": [
"mongodb",
"mongodb-fulltext-search",
"self-hosted-search",
"middleware",
"query"
],
"author": "Anthony Onabanjo (https://github.com/deflexable)",
"license": "MIT",
"devDependencies": {
"@types/mongodb": "^4.0.7",
"@babel/core": "^7.23.7",
"@babel/preset-env": "^7.23.8",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-node-resolve": "^15.2.3",
"rollup": "^4.9.5",
"rollup-plugin-terser": "^7.0.2"
}
}