-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 997 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 997 Bytes
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-format-response",
"version": "0.0.2",
"description": "Express middleware for pre-formatting JSON responses",
"main": "index.js",
"scripts": {
"test": "node ./node_modules/mocha/bin/mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/fiddus/express-format-response.git"
},
"keywords": [
"node",
"express",
"rest",
"restfull",
"restapi",
"format",
"pre-format"
],
"author": "Vinicius Teixeira",
"license": "MIT",
"bugs": {
"url": "https://github.com/fiddus/express-format-response/issues"
},
"homepage": "https://github.com/fiddus/express-format-response#readme",
"devDependencies": {
"chai": "^2.3.0",
"express": "^4.12.4",
"grunt": "^0.4.5",
"grunt-contrib-jshint": "^0.11.2",
"grunt-jscs": "^1.8.0",
"grunt-mocha-test": "^0.12.7",
"mocha": "^2.2.5",
"supertest": "^1.0.1"
},
"peerDependencies": {
"grunt": ">0.4.2",
"mocha": ">1.20.0"
}
}