-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.03 KB
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
{
"name": "parameters-middleware",
"version": "0.1.0",
"description": "Express.js middleware that checks if the given parameters are set in the request.",
"main": "index.js",
"scripts": {
"test": "grunt test"
},
"repository": {
"type": "git",
"url": "https://github.com/mkretschek/parameters-middleware"
},
"keywords": [
"express",
"middleware",
"parameters",
"request"
],
"author": "Mathias Kretschek <mathias@kretschek.com.br> (http://mathias.ms/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mkretschek/parameters-middleware/issues"
},
"homepage": "https://github.com/mkretschek/parameters-middleware",
"devDependencies": {
"chai": "^1.9.1",
"codeclimate-test-reporter": "0.0.3",
"coveralls": "^2.11.1",
"grunt": "^0.4.5",
"grunt-contrib-jshint": "^0.10.0",
"grunt-mocha-test": "^0.11.0",
"istanbul": "^0.3.0",
"mocha": "^1.20.1",
"sinon": "^1.10.3",
"sinon-chai": "^2.5.0"
},
"dependencies": {
"underscore": "^1.6.0"
}
}