forked from restify/node-restify
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.49 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.49 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"author": "Mark Cavage <mcavage@gmail.com>",
"contributors": [
"Nathanael Anderson",
"Adam Argo",
"Dominic Barnes",
"Josh Clulow",
"Jonathan Dahan",
"Domenic Denicola",
"Bryan Donovan",
"Paul Bouzakis",
"Shaun Berryman",
"Ben Hale",
"Ben Howes",
"Ben Hutchison",
"Erik Kristensen",
"Domikik Lessel",
"Steve Mason",
"Trent Mick",
"Colin O'Brien",
"Falco Nogatz",
"Pedro Palazón",
"Andrew Robinson",
"Isaac Schlueter",
"Andrew Sliwinski",
"Richardo Stuven",
"Matt Smillie",
"Diego Torres",
"Mike Williams"
],
"name": "restify",
"homepage": "http://mcavage.github.com/node-restify",
"description": "REST framework",
"version": "2.6.1",
"repository": {
"type": "git",
"url": "git://github.com/mcavage/node-restify.git"
},
"main": "lib/index.js",
"directories": {
"lib": "./lib"
},
"bin": {
"report-latency": "./bin/report-latency"
},
"engines": {
"node": ">=0.8"
},
"dependencies": {
"assert-plus": "0.1.2",
"backoff": "2.2.0",
"bunyan": "0.21.3",
"deep-equal": "0.0.0",
"escape-regexp-component": "1.0.2",
"formidable": "1.0.14",
"http-signature": "0.10.0",
"keep-alive-agent": "0.0.1",
"lru-cache": "2.3.0",
"mime": "1.2.9",
"negotiator": "0.2.5",
"node-uuid": "1.4.0",
"once": "1.1.1",
"qs": "0.6.4",
"semver": "1.1.4",
"spdy": "1.8.2",
"verror": "1.3.6",
"csv": "0.3.3"
},
"optionalDependencies": {
"dtrace-provider": "0.2.8"
},
"devDependencies": {
"cover": "0.2.8",
"filed": "0.0.7",
"nodeunit": "0.8.0",
"watershed": "0.3.0"
},
"scripts": {
"test": "nodeunit ./test"
}
}