-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.01 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
{
"name": "node-performance",
"version": "1.0.0",
"description": "Performance results of different node frameworks.",
"main": "index.js",
"scripts": {
"donode": "node donode/app.js",
"express": "node express/server.js",
"restify": "node restify/server.js",
"koa": "node koa/server.js",
"hapi": "node hapi/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/madhusudhand/node-performance.git"
},
"keywords": [
"restify",
"express",
"hapi",
"donode",
"performance"
],
"author": "Madhusudhana Rao Dollu",
"license": "MIT",
"bugs": {
"url": "https://github.com/madhusudhand/node-performance/issues"
},
"homepage": "https://github.com/madhusudhand/node-performance#readme",
"dependencies": {
"app": "file:donode",
"body-parser": "^1.15.2",
"express": "~4.14.0",
"hapi": "^16.0.2",
"koa": "^2.2.0",
"koa-bodyparser": "^4.2.0",
"koa-route": "^3.2.0",
"koa-router": "^5.4.0",
"restify": "^4.3.0"
}
}