This repository has been archived by the owner on Jul 2, 2021. It is now read-only.
forked from restify/node-restify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
151 lines (151 loc) · 3.28 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
{
"author": "Mark Cavage <[email protected]>",
"contributors": [
"Adam Argo",
"Alex Liu",
"Alexander Olsson",
"Andrew Robinson",
"Andrew Sliwinski",
"Anro Robinson",
"Armin Tamzarian",
"Asa Ayers",
"Bastiaan Marinus van de Weerd",
"Ben Doerr",
"Ben Hale",
"Ben Howes",
"Ben Hutchison",
"Benjamine Coe",
"Benjamin Urban",
"Blake VanLandingham",
"Brian Pin",
"Bryan Donovan",
"Bryce Kahle",
"Christopher Cannell",
"Clément Désiles",
"Colin O'Brien",
"Corbin Uselton",
"Diego Torres",
"Domenic Denicola",
"Domikik Lessel",
"Dominic Barnes",
"Erik Kristensen",
"Falco Nogatz",
"Gergely Nemeth",
"Guillaume Chauvet",
"Ifiok Idiang",
"Isaac Schlueter",
"Jacob Quatier",
"James O'Cull",
"James Womack",
"Jonathan Dahan",
"Josh Clulow",
"Jorge Serrano",
"Jason Ghent",
"Khaja Naquiuddin",
"Lou Sacco",
"Matt Smillie",
"Mattijs Spierings",
"Micah Ransdell",
"Michal Moskal",
"Michael Paulson",
"Mike Williams",
"Nathanael Anderson",
"Patrick Mooney",
"Paul Bouzakis",
"Pedro Palazón",
"Quentin Buathier",
"Richardo Stuven",
"Scott Turnquest",
"Shaun Berryman",
"Steve Mason",
"Tim Kuijsten",
"Trent Mick",
"Tuure Kanuisto",
"Will Prater",
"Yunong Xiao",
"Zachary Snow"
],
"name": "restify",
"homepage": "http://restify.com",
"description": "REST framework",
"keywords": [
"REST",
"framework",
"express",
"DTrace"
],
"version": "8.5.1",
"repository": {
"type": "git",
"url": "git://github.com/restify/node-restify.git"
},
"bugs": {
"url": "https://github.com/restify/node-restify/issues"
},
"main": "lib/index.js",
"directories": {
"lib": "./lib"
},
"bin": {
"report-latency": "./bin/report-latency"
},
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"assert-plus": "^1.0.0",
"csv": "^5.1.1",
"escape-regexp-component": "^1.0.2",
"ewma": "^2.0.1",
"find-my-way": "^2.0.1",
"formidable": "^1.2.1",
"http-signature": "^1.2.0",
"lodash": "^4.17.11",
"lru-cache": "^5.1.1",
"mime": "^2.4.3",
"negotiator": "^0.6.2",
"once": "^1.4.0",
"pidusage": "^2.0.17",
"pino": "^6.3.2",
"qs": "^6.7.0",
"restify-errors": "^8.0.2",
"semver": "^6.1.1",
"send": "^0.17.1",
"spdy": "^4.0.0",
"uuid": "^3.3.2",
"vasync": "^2.2.0"
},
"optionalDependencies": {
"dtrace-provider": "^0.8.1"
},
"devDependencies": {
"autocannon": "^4.0.0",
"autocannon-compare": "^0.4.0",
"chai": "^4.2.0",
"coveralls": "^3.0.3",
"documentation": "^11.0.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-jsdoc": "^3.15.1",
"eslint-plugin-prettier": "^3.1.0",
"glob": "^7.1.4",
"inquirer": "^3.3.0",
"mkdirp": "^0.5.1",
"mocha": "^7.1.1",
"nodeunit": "^0.11.3",
"nyc": "^15.0.0",
"ora": "^1.3.0",
"pre-commit": "^1.2.2",
"prettier": "^1.17.1",
"proxyquire": "^1.8.0",
"restify-clients": "^2.6.6",
"rimraf": "^2.6.3",
"sinon": "^7.5.0",
"validator": "^7.2.0",
"watershed": "^0.4.0"
},
"license": "MIT",
"scripts": {
"test": "make prepush"
}
}