-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.17 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
{
"name": "vue-stomp-plugin",
"version": "1.0.6",
"description": "a websocket plugin for web app",
"main": "lib/index",
"scripts": {
"test": "test",
"dev": "rollup -w -c scripts/config.js --environment TARGET:web-dev",
"build": "rollup -c scripts/config.js --environment TARGET:web-pro"
},
"repository": {
"type": "git",
"url": "[email protected]:crossskyLi/vue-stomp-plugin.git"
},
"keywords": [
"websocket",
"stomp",
"vue"
],
"author": "crossskyLi",
"license": "ISC",
"dependencies": {
"@stomp/stompjs": "^5.4.2",
"sockjs-client": "^1.3.0",
"vue": "^2.6.10"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-latest": "^6.24.1",
"rollup": "^1.16.4",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-typescript": "^1.0.1",
"tslib": "^1.10.0",
"typescript": "^3.5.2"
},
"peerDependencies": {
"@stomp/stompjs": "5.1.0",
"sockjs-client": "^1.3.0",
"vue": "^2.6.10"
}
}