-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
61 lines (61 loc) · 1.6 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
{
"name": "vue-happy-bus",
"version": "2.0.1-vue3",
"description": "Event Bus for Vue3, automatically cancel listening events when unmounted.",
"source": "src/index.ts",
"amdName": "VueHappyBus",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"esmodule": "dist/index.modern.js",
"unpkg": "dist/index.umd.js",
"types": "dist/types",
"scripts": {
"test": "jest --coverage",
"build": "microbundle --strict"
},
"files": [
"src",
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/tangdaohai/vue-happy-bus.git"
},
"keywords": [
"vue bus",
"vue3 bus",
"bus",
"event-bus",
"event-hub"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/tangdaohai/vue-happy-bus/issues"
},
"homepage": "https://github.com/tangdaohai/vue-happy-bus",
"dependencies": {
"vue": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@types/jest": "^26.0.15",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"@vue/test-utils": "^2.0.0-beta.9",
"eslint": "^7.13.0",
"eslint-config-standard": "^16.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.1.0",
"happy-event-bus": "^1.0.0",
"jest": "^26.6.3",
"microbundle": "^0.12.4",
"ts-jest": "^26.4.4",
"typescript": "^4.0.5"
}
}