forked from ramkumarshankar/vue-simple-websocket
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.33 KB
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
{
"name": "vue-simple-websocket",
"version": "0.0.3",
"description": "A simple native reconnecting websocket for Vue.js",
"main": "dist/VueSimpleWebSocket.js",
"module": "dist/VueSimpleWebSocket.module.js",
"homepage": "https://github.com/ramkumarshankar/vue-simple-websocket#readme",
"repository": "github:ramkumarshankar/vue-simple-websocket",
"scripts": {
"clean": "rimraf dist",
"build": "NODE_ENV=production rollup -c",
"test": "NODE_ENV=test jest"
},
"keywords": [
"Vue.js",
"vuejs",
"socket",
"vue",
"websocket",
"realtime"
],
"author": "Ramkumar Shankar",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.1.0",
"@babel/core": "^7.1.0",
"@babel/plugin-transform-modules-commonjs": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^9.0.0",
"babel-preset-minify": "^0.5.0-alpha.3cc09dcf",
"eslint": "^5.6.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"jest": "^23.6.0",
"mock-socket": "^8.0.2",
"rollup": "^0.66.2",
"rollup-plugin-babel": "^4.0.1",
"rollup-plugin-babel-minify": "^6.0.0",
"vue": "^2.5.17"
},
"dependencies": {}
}