-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.31 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
40
41
42
43
44
45
46
{
"name": "express-requires",
"version": "1.2.0",
"description": "An express middleware for validating request fields and query parameters and returns a nicely formatted informative response",
"main": "index.js",
"scripts": {
"start": "node ./index.js",
"test": "mocha test",
"cover": "istanbul cover _mocha",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/edufresne/express-requires.git"
},
"keywords": [
"express",
"middleware",
"validation",
"requests",
"params",
"fields"
],
"author": "Eric Dufresne",
"license": "MIT",
"bugs": {
"url": "https://github.com/edufresne/express-requires/issues"
},
"homepage": "https://github.com/edufresne/express-requires#readme",
"dependencies": {
"express-api-responder": "^1.1.1"
},
"devDependencies": {
"body-parser": "^1.18.2",
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"cookie-parser": "^1.4.3",
"coveralls": "^3.0.0",
"express": "^4.16.3",
"istanbul": "^0.4.5",
"mocha": "^5.0.5",
"mocha-lcov-reporter": "^1.3.0",
"morgan": "^1.9.0",
"nyc": "^11.6.0"
}
}