-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.22 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": "loopback-socket",
"version": "0.4.6",
"description": "Loopback module for create Socket.io connections and allow call methods and make subscriptions",
"main": "index.js",
"scripts": {
"vpublish": "npm version patch -m \"Version %s\" && npm publish",
"test": "mocha --reporter spec",
"cover": "node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- -R spec test/*"
},
"engines": {
"node": ">=4.0.0"
},
"repository": {
"type": "git",
"url": "git://github.com/arondn2/loopback-socket.git"
},
"keywords": [
"strongloop",
"loopback",
"express",
"web",
"security",
"auth",
"socket",
"realtime",
"framework",
"websocket",
"events",
"io"
],
"author": "Alex J. Rondon <[email protected]> (https://github.com/arondn2)",
"license": "MIT",
"bugs": {
"url": "https://github.com/arondn2/loopback-socket/issues"
},
"devDependencies": {
"bluebird": "^3.5.2",
"chai": "^4.1.2",
"coveralls": "^3.0.2",
"istanbul": "^0.4.5",
"mocha": "^8.1.1"
},
"ignore": [
"**/.*",
"node_modules",
"examples",
"tests"
],
"dependencies": {
"socket.io": "^2.1.1",
"socketio-auth": "^0.1.1"
}
}