-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 773 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 773 Bytes
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
{
"name": "express-middleware-timer",
"version": "0.2.2",
"description": "A simple timer implementation for debugging express middleware.",
"main": "index.js",
"scripts": {
"test": "mocha -R spec ./test/test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/yp-engineering/express-middleware-timer.git"
},
"keywords": [
"express",
"middleware",
"timer",
"performance",
"debuging"
],
"author": "Joshua P. Mervine <joshua@mervine.net>",
"license": "MIT",
"bugs": {
"url": "https://github.com/yp-engineering/express-middleware-timer/issues"
},
"homepage": "https://github.com/yp-engineering/express-middleware-timer",
"devDependencies": {
"mocha": "~1.15.1",
"express": "~3.4.7"
}
}