-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.1 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.1 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
41
42
43
44
45
46
47
{
"name": "node-friendly-response",
"version": "3.1.4",
"description": "Easy way to make JSONs responses and promisified response flow",
"main": "index.js",
"scripts": {
"test": "node_modules/mocha/bin/mocha -R spec -t 50 test/*.test.js test/**/*.test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/fedescarpa/node-friendly-response.git"
},
"author": "Federico Scarpa",
"license": "MIT",
"bugs": {
"url": "https://github.com/fedescarpa/node-friendly-response/issues"
},
"keywords": [
"express",
"request",
"response",
"http",
"status",
"promise",
"bluebird",
"q",
"api",
"rest"
],
"homepage": "https://github.com/fedescarpa/node-friendly-response",
"dependencies": {
"http-status-codes": "1.0.4",
"humanize-string": "1.0.1",
"lodash": "2.4.1",
"node-custom-errors": "0.1.5",
"string": "3.0.0"
},
"devDependencies": {
"bluebird": "2.9.4",
"express": "4.11.1",
"interpolate": "0.1.0",
"mocha": "2.1.0",
"request": "2.53.0",
"should": "4.6.1",
"supertest": "0.15.0"
}
}