-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
48 lines (48 loc) · 1.1 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
{
"name": "socketio-jwt-auth",
"version": "0.2.1",
"description": "Socket.io authentication middleware using Json Web Token",
"keywords": [
"socket.io",
"socket.io middleware",
"authenticate",
"authentication",
"authorize",
"authorization",
"auth",
"jwt",
"Json Web Token",
"Socket.io JWT Auth"
],
"main": "./lib",
"scripts": {
"test": "mocha",
"cover": "istanbul cover ./node_modules/mocha/bin/_mocha",
"coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls"
},
"author": {
"name": "Lei Lei",
"email": "[email protected]"
},
"contributors": [
"Dave Sag <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/adcentury/socketio-jwt-auth.git"
},
"license": "MIT",
"dependencies": {
"jwt-simple": "^0.5",
"xtend": "^4.0.0"
},
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"istanbul": "^0.4.5",
"mocha": "^5.0.0",
"mocha-lcov-reporter": "^1.3.0",
"socket.io": "^1.3.7",
"socket.io-client": "^1.3.7"
}
}