-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
38 lines (38 loc) · 955 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
38
{
"name": "vue-stomp",
"version": "0.0.5",
"description": "stomp over websocket in vue",
"main": "/dist/vue-stomp.js",
"scripts": {
"build": "webpack --progress --config webpack.build.config.js",
"test": "test vue-stomp"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FlySkyBear/vue-stomp.git"
},
"keywords": [
"vue",
"stomp",
"websocket"
],
"author": "WuJianLin",
"license": "MIT",
"bugs": {
"url": "https://github.com/FlySkyBear/vue-stomp/issues"
},
"homepage": "https://github.com/FlySkyBear/vue-stomp#readme",
"devDependencies": {
"babel-core": "6.14.0",
"babel-loader": "^6.2.10",
"babel-plugin-transform-runtime": "6.15.0",
"babel-preset-es2015": "6.14.0",
"babel-preset-stage-2": "6.5.0",
"sockjs-client": "^1.1.1",
"webstomp-client": "^1.0.3"
},
"dependencies": {
"sockjs-client": "^1.1.1",
"webstomp-client": "^1.0.3"
}
}