-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
54 lines (54 loc) · 1.17 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
{
"name": "supertest-session",
"version": "5.0.1",
"description": "Cookie-based session persistence for Supertest",
"main": "index.js",
"scripts": {
"lint": "jshint .",
"pretest": "npm run lint",
"test": "nyc jasmine test/*",
"cover": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git://github.com/rjz/supertest-session"
},
"keywords": [
"supertest",
"session",
"cookie"
],
"author": "RJ Zaworski <[email protected]>",
"contributors": [
{
"name": "Chris Young",
"email": "[email protected]"
},
{
"name": "Christoph Tavan",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/rjz/supertest-session/issues"
},
"peerDependencies": {
"supertest": ">= 3.1.0"
},
"dependencies": {
"object-assign": "^4.0.1",
"cookiejar": "^2.1.2",
"methods": "^1.1.2"
},
"devDependencies": {
"connect": "^3.6.6",
"cookie-session": "^1.3.3",
"coveralls": "^3.0.3",
"express": "^4.16.4",
"jasmine": "^3.3.1",
"jshint": "^2.10.2",
"nyc": "^15.1.0",
"supertest": "^4.0.2"
}
}