-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 922 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 922 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": "engine.io-session",
"version": "0.0.6",
"author": "Matthias Klein <matthias@klein.pw>",
"description": "Read Connect sessions in engine.io",
"repository": {
"type": "git",
"url": "https://github.com/matkl/engine.io-session.git"
},
"main": "main.js",
"scripts": {
"test": "istanbul cover ./node_modules/mocha/bin/_mocha --",
"coveralls": "cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"
},
"keywords": [
"engine.io",
"plugin",
"session",
"connect",
"express"
],
"license": "MIT",
"dependencies": {
"cookie-signature": "^1.0.6"
},
"devDependencies": {
"chai": "^3.5.0",
"connect": "^2.30.2",
"coveralls": "^2.11.9",
"engine.io": "^1.6.8",
"engine.io-client": "^1.6.8",
"express-session": "^1.13.0",
"istanbul": "^0.4.3",
"mocha": "^2.4.5",
"superagent": "^1.8.3",
"supertest": "^1.2.0"
}
}