-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 825 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 825 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
{
"name": "express-sendjson",
"version": "3.0.0",
"author": "Greg Byram <greg@gregbyram.com>",
"description": "A simple express middleware that wraps the res.status(#).json({}) functionality into a single function with additional metadata about the response.",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/mocha test"
},
"license": "MIT",
"dependencies": {},
"devDependencies": {
"mocha": "^2.5.3",
"should": "^11.1.0"
},
"repository": "Greg-GB/express-sendJSON",
"homepage": "http://greg@gregbyram.com",
"engines": {
"node": ">= 0.10.0"
},
"keywords": [
"express",
"express-send",
"express-sendJSON",
"express-responseJSON",
"sendJSON"
],
"files": [
"LICENSE",
"Readme.md",
"CHANGELOG.md",
"index.js",
"lib/"
]
}