-
Notifications
You must be signed in to change notification settings - Fork 161
/
package.json
executable file
·64 lines (64 loc) · 1.79 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
{
"name": "vue-native-websocket",
"version": "2.1.0",
"description": "native websocket implemantation for vuejs and vuex",
"main": "dist/build.js",
"scripts": {
"build": "eslint --ext .js src && webpack --progress",
"lint": "eslint --ext .js src",
"unit": "karma start test/unit/karma.conf.js",
"test": "karma start test/unit/karma.conf.js --single-run "
},
"repository": {
"type": "git",
"url": "git+https://github.com/nathantsoi/vue-native-websocket.git"
},
"keywords": [
"vuejs",
"socket",
"vue",
"websocket",
"realtime",
"flux",
"vuex",
"redux"
],
"author": "Nathan Tsoi",
"license": "MIT",
"bugs": {
"url": "https://github.com/nathantsoi/vue-native-websocket/issues"
},
"homepage": "https://github.com/nathantsoi/vue-native-websocket#readme",
"devDependencies": {
"@babel/cli": "^7.18.9",
"@babel/core": "^7.18.9",
"@babel/eslint-parser": "^7.18.9",
"@babel/plugin-transform-runtime": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"babel-loader": "^8.2.5",
"chai": "^4.3.6",
"eslint": "^8.20.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.4",
"eslint-plugin-promise": "^6.0.0",
"exports-loader": "^0.6.4",
"karma": "^6.4.0",
"karma-chrome-launcher": "^3.1.1",
"karma-coverage": "^2.2.0",
"karma-mocha": "^2.0.1",
"karma-sinon-chai": "^2.0.2",
"karma-sourcemap-loader": "^0.3.8",
"karma-spec-reporter": "^0.0.33",
"karma-webpack": "^5.0.0",
"mocha": "^9.2.1",
"mock-socket": "^6.1.0",
"script-loader": "^0.7.0",
"sinon": "^13.0.1",
"sinon-chai": "^3.7.0",
"terser-webpack-plugin": "^5.3.3",
"vue": "^2.7.7",
"webpack": "^5.76.0",
"webpack-cli": "^4.10.0"
}
}