forked from facundoolano/socketio-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 940 Bytes
/
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
{
"name": "socketio-auth",
"version": "0.0.5",
"description": "Authentication for socket.io",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"jscs": "jscs lib/ test/",
"jshint": "jshint lib/ test/",
"lint": "npm run jshint && npm run jscs",
"pretest": "npm run lint",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/facundoolano/socketio-auth"
},
"keywords": [
"socket",
"socket.io",
"authentication",
"auth",
"invisible.js"
],
"author": "Facundo Olano and Martín Paulucci",
"license": "ISC",
"bugs": {
"url": "https://github.com/facundoolano/socketio-auth/issues"
},
"homepage": "https://github.com/facundoolano/socketio-auth",
"dependencies": {
"debug": "^2.1.3",
"lodash": "^3.8.0"
},
"devDependencies": {
"jscs": "~1.8.0",
"jshint": "~2.5.10",
"mocha": "^1.21.5"
}
}