-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
44 lines (44 loc) · 1.31 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
{
"name": "vue-echo-laravel",
"version": "1.0.0",
"description": "It's a laravel/echo wrapper for Vue JS ^2.0. This Vue plugin injects a Laravel Echo instance into all of your vue instances, allowing for a simple channel subscription on each instance, or using Laravel Echo through this.$echo. It will be synced with lates version of echo repo",
"main": "dist/build.js",
"scripts": {
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules",
"release": "git push --follow-tags && npm publish",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"laravel-echo": "^1.11.4",
"pusher-js": "^7.0.6"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-loader": "^7.1.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"cross-env": "^5.0.4",
"webpack": "^3.3.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/msonowal/vue-echo.git"
},
"keywords": [
"laravel-echo",
"vue-echo",
"vuejs",
"echo",
"socketio",
"broadcasting",
"pusher",
"realtime",
"socket.io"
],
"author": "Manash <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/msonowal/vue-echo",
"bugs": {
"url": "https://github.com/msonowal/vue-echo/issues"
}
}