-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 989 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
{
"name": "express-mongodb-filters",
"version": "1.1.2",
"description": "ExpressJS middleware that allows expressjs apps to handle custom MongoDB queries sent from the client.",
"main": "index.js",
"scripts": {
"test": "npx nyc ava *.spec.js",
"lint": "npx eslint *.js --fix",
"precommit": "npm run lint && npm run test && npx depcheck"
},
"files": [
"index.js",
"lib.js"
],
"author": "Mattia Alfieri <[email protected]>",
"license": "MIT",
"keywords": [
"http",
"mongodb",
"express",
"query"
],
"repository": {
"type": "git",
"url": "https://github.com/fatmatto/express-mongodb-filter.git"
},
"bugs": {
"url": "https://github.com/fatmatto/express-mongodb-filter/issues"
},
"devDependencies": {
"ava": "^5.1.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.1"
}
}