forked from icebob/vue-websocket
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 838 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
{
"name": "vue-websocket-next",
"version": "0.2.7",
"description": "Websocket handler for Vue.js",
"homepage": "https://github.com/cgwire/vue-websocket-next",
"main": "dist/vue-websocket.js",
"scripts": {
"prebuild": "npm run lint",
"build": "webpack --progress --config webpack.build.config.js",
"lint": "eslint --ext=.js,.vue src",
"prepublish": "npm run build"
},
"keywords": [
"vue",
"websocket",
"socket",
"socket.io"
],
"repository": {
"type": "git",
"url": "https://github.com/cgwire/vue-websocket-next.git"
},
"files": [
"dist",
"src"
],
"author": "Icebob & CGWire",
"license": "MIT",
"devDependencies": {
"eslint-plugin-html": "^6.2.0",
"webpack": "5.53.0",
"webpack-cli": "^4.8.0"
},
"dependencies": {
"eslint": "^7.32.0"
}
}