-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.34 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
{
"name": "vue-breif-event-bus",
"version": "0.1.4",
"description": " a simple library that provides pub/sub services, which can be used in `SPA` based on `vue` ",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"repository": {
"type": "git",
"url": "git+https://github.com/liuyunzhuge/vue-event-bus"
},
"keywords": [
"event-bus",
"vue-event-bus"
],
"author": "liuyunzhuge",
"license": "MIT",
"bugs": {
"url": "https://github.com/liuyunzhuge/vue-event-bus/issues"
},
"homepage": "https://github.com/liuyunzhuge/vue-event-bus#readme",
"devDependencies": {
"@babel/cli": "^7.7.4",
"@babel/core": "^7.7.4",
"@babel/plugin-external-helpers": "^7.7.4",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-transform-runtime": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"browser-sync": "^2.26.7",
"rollup": "^1.27.8",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-uglify": "^6.0.3",
"vue": "^2.6.10"
},
"scripts": {
"compile": "rollup -c",
"server": "node server.js"
},
"dependencies": {
"@babel/runtime": "^7.7.4",
"breif-event-bus": "^0.1.10"
},
"peerDependencies": {
"vue": "^2.6.10"
}
}