forked from restify/node-restify
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
82 lines (82 loc) · 2.53 KB
/
package.json
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
82
{
"author": "Mark Cavage <[email protected]>",
"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.4",
"backoff": "2.3.0",
"bunyan": "1.8.13",
"csv": "0.3.6",
"deep-equal": "0.0.0",
"escape-regexp-component": "1.0.2",
"formidable": "3.2.4",
"http-signature": "1.0.0",
"keep-alive-agent": "0.0.1",
"lru-cache": "2.3.1",
"mime": "1.4.1",
"negotiator": "0.6.1",
"node-uuid": "1.4.6",
"once": "1.3.0",
"qs": "6.0.4",
"semver": "4.3.2",
"spdy": "1.14.12",
"tunnel-agent": "0.6.0",
"verror": "1.3.6"
},
"optionalDependencies": {
"dtrace-provider": "0.2.8"
},
"devDependencies": {
"cover": "0.2.9",
"filed": "0.1.0",
"nodeunit": "0.8.1",
"watershed": "0.3.0"
},
"scripts": {
"test": "nodeunit ./test"
}
}