-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 945 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 945 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
31
32
33
34
35
36
37
38
{
"name": "request-context",
"version": "2.0.0",
"description": "Simple connect middleware to wrap the request handling in a domain and set and access data for the current request lifecycle only.",
"main": "lib/index.js",
"scripts": {
"test": "gulp test"
},
"repository": {
"type": "git",
"url": "https://github.com/michaelkrone/request-context.git"
},
"keywords": [
"connect",
"express",
"request",
"context",
"data",
"store",
"middleware",
"domain"
],
"author": " michael.krone@outlook.com",
"license": "ISC",
"bugs": {
"url": "https://github.com/michaelkrone/request-context/issues"
},
"homepage": "https://github.com/michaelkrone/request-context",
"devDependencies": {
"connect": "^3.3.4",
"gulp": "^3.8.11",
"gulp-eslint": "^3.0.1",
"gulp-jsdoc3": "^1.0.1",
"gulp-mocha": "^3.0.1",
"gulp-util": "^3.0.4",
"request": "^2.53.0"
}
}