forked from restify/node-restify
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.35 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
{
"author": "Mark Cavage <[email protected]>",
"contributors": [
"Luri Aranda",
"Dominic Barnes",
"Tamas Daniel",
"Domenic Denicola",
"Paul Bouzakis",
"Shaun Berryman",
"Ben Howes",
"Steve Mason",
"Trent Mick",
"Falco Nogatz",
"Pedro Palazón",
"Petter Rasmussen",
"Andrew Robinson",
"Isaac Schlueter",
"Andrew Sliwinski",
"Matt Smillie",
"Simon Sturmer",
"Diego Torres",
"Jonathan Wiepert",
"Mike Williams"
],
"name": "restify",
"homepage": "http://mcavage.github.com/node-restify",
"description": "REST framework",
"version": "1.4.4",
"repository": {
"type": "git",
"url": "git://github.com/mcavage/node-restify.git"
},
"main": "lib/index.js",
"bin": {
"report-latency": "./bin/report-latency"
},
"engines": {
"node": ">=0.6"
},
"dependencies": {
"async": "0.1.22",
"bunyan": "0.10.0",
"byline": "2.0.2",
"formidable": "1.0.11",
"dtrace-provider": "0.0.9",
"http-signature": "0.9.9",
"lru-cache": "1.1.0",
"mime": "1.2.5",
"node-uuid": "1.3.3",
"qs": "0.5.0",
"retry": "0.6.0",
"semver": "1.0.14"
},
"devDependencies": {
"filed": "0.0.6",
"tap": "0.2.5"
},
"optionalDependencies": {
"dtrace-provider": "0.0.9"
},
"scripts": {
"test": "./node_modules/.bin/tap ./test/*.test.js"
}
}