forked from rjz/supertest-session
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.14 KB
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
{
"name": "supertest-session",
"version": "3.1.0",
"description": "Cookie-based session persistence for Supertest",
"main": "index.js",
"scripts": {
"lint": "jshint .",
"pretest": "npm run lint",
"test": "jasmine-node test --forceexit",
"cover": "istanbul cover jasmine-node -- --forceexit test"
},
"repository": {
"type": "git",
"url": "git://github.com/rjz/supertest-session"
},
"keywords": [
"supertest",
"session",
"cookie"
],
"author": "RJ Zaworski <rj@rjzaworski.com>",
"contributors": [
{
"name": "Chris Young",
"email": "cyoung@mobiquityinc.com"
},
{
"name": "Christoph Tavan",
"email": "dev@tavan.de"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/rjz/supertest-session/issues"
},
"dependencies": {
"cookiejar": "^2.0.1",
"methods": "^1.1.1",
"object-assign": "^4.0.1",
"supertest": "^2.0.1"
},
"devDependencies": {
"connect": "^3.2.0",
"cookie-session": "^1.1.0",
"coveralls": "^2.11.2",
"express": "^4.9.5",
"istanbul": "^0.3.0",
"jasmine-node": "^1.14.5",
"jshint": "^2.5.10"
}
}