-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
42 lines (42 loc) · 844 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
{
"name": "express-partial-response",
"version": "1.0.4",
"description": "Express middleware for filtering-out parts of JSON responses based on the `fields` query-string.",
"dependencies": {
"json-mask": "^1.0.4"
},
"main": "index.js",
"keywords": [
"express",
"partial-response",
"filter",
"mask",
"select",
"fields",
"projection",
"query",
"json"
],
"engines": {
"node": ">=10"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"prettier": {
"singleQuote": true
},
"author": "[email protected]",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/nemtsov/express-partial-response.git"
},
"devDependencies": {
"husky": "^4.3.0",
"prettier": "^2.1.2",
"pretty-quick": "^3.1.0"
}
}