This repository has been archived by the owner on Oct 2, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 75
/
package.json
82 lines (82 loc) · 2.41 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "vue-websocket",
"version": "0.2.3",
"description": "Websocket handler for Vue.js",
"homepage": "https://github.com/icebob/vue-websocket",
"main": "dist/vue-websocket.js",
"scripts": {
"_prebuild": "npm run test",
"build": "webpack --progress --config webpack.build.config.js",
"lint": "eslint --ext=.js,.vue src test/unit/specs",
"coverall": "cat ./test/unit/coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"coverage": "npm run test && npm run coverall",
"changelog": "conventional-changelog -i CHANGELOG.md -s",
"unit": "karma start test/unit/karma.conf.js",
"pretest": "npm run lint",
"test": "npm run unit",
"ci": "karma start test/unit/karma.conf.js --auto-watch --no-single-run --reporters=dots --port=9877"
},
"keywords": [
"vue",
"websocket",
"socket",
"socket.io"
],
"repository": {
"type": "git",
"url": "https://github.com/icebob/vue-websocket.git"
},
"files": [
"dist",
"src"
],
"author": "Icebob",
"license": "MIT",
"devDependencies": {
"babel-core": "6.14.0",
"babel-loader": "6.2.5",
"babel-plugin-transform-runtime": "6.15.0",
"babel-preset-es2015": "6.14.0",
"babel-preset-stage-2": "6.5.0",
"chai": "3.5.0",
"conventional-changelog-cli": "1.2.0",
"coveralls": "2.11.14",
"eslint": "^5.5.0",
"eslint-friendly-formatter": "2.0.6",
"eslint-loader": "^1.5.0",
"eslint-plugin-html": "^4.0.5",
"eslint-plugin-vue": "0.1.1",
"isparta-loader": "2.0.0",
"karma": "1.3.0",
"karma-chai": "0.1.0",
"karma-chrome-launcher": "1.0.1",
"karma-coverage": "1.1.1",
"karma-coveralls": "1.1.2",
"karma-mocha": "1.2.0",
"karma-phantomjs-launcher": "1.0.2",
"karma-sinon-chai": "1.2.4",
"karma-sourcemap-loader": "0.3.7",
"karma-spec-reporter": "0.0.26",
"karma-webpack": "1.8.0",
"lodash": "4.16.2",
"lolex": "1.5.1",
"mocha": "2.5.3",
"mocha-generators": "1.2.0",
"mocha-loader": "0.7.1",
"phantomjs-prebuilt": "2.1.12",
"sinon": "1.17.6",
"sinon-chai": "2.8.0",
"vue": "1.0.27",
"vue-hot-reload-api": "1.3.2",
"vue-html-loader": "^1.2.4",
"vue-loader": "8.5.4",
"vue-style-loader": "^4.1.2",
"webpack": "1.13.2",
"webpack-dev-middleware": "1.8.3",
"webpack-dev-server": "1.16.1",
"webpack-merge": "0.14.1"
},
"dependencies": {
"socket.io-client": "1.5.1"
}
}