forked from restify/node-restify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.29 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
{
"author": "Mark Cavage <[email protected]>",
"contributors": [
"Dominic Barnes",
"Tamas Daniel",
"Domenic Denicola",
"Paul Bouzakis",
"Shaun Berryman",
"Ben Howes",
"Steve Mason",
"Trent Mick",
"Falco Nogatz",
"Pedro Palazón",
"Andrew Robinson",
"Isaac Schlueter",
"Andrew Sliwinski",
"Matt Smillie",
"Simon Sturmer",
"Diego Torres",
"Mike Williams"
],
"name": "restify",
"homepage": "http://mcavage.github.com/node-restify",
"description": "REST framework",
"version": "1.4.3",
"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.8.0",
"byline": "2.0.2",
"formidable": "1.0.11",
"dtrace-provider": "0.0.8",
"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.6"
},
"scripts": {
"test": "./node_modules/.bin/tap ./test/*.test.js"
}
}