This repository has been archived by the owner on Dec 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
57 lines (57 loc) · 1.67 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
{
"name": "vue-event-manager",
"version": "2.1.3",
"main": "dist/vue-event-manager.common.js",
"module": "dist/vue-event-manager.esm.js",
"unpkg": "dist/vue-event-manager.min.js",
"jsdelivr": "dist/vue-event-manager.min.js",
"description": "The event manager for Vue.js",
"homepage": "https://github.com/pagekit/vue-event-manager",
"license": "MIT",
"keywords": [
"vue",
"event",
"listener"
],
"bugs": {
"url": "https://github.com/pagekit/vue-event-manager/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pagekit/vue-event-manager.git"
},
"scripts": {
"up": "yarn upgrade-interactive --latest",
"karma": "karma start test/karma.conf.js --single-run",
"build": "node ./build/build.js",
"release": "node ./build/release.js",
"eslint": "eslint .",
"eslint-fix": "eslint . --fix",
"storybook": "start-storybook -c .storybook -p 9001"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.0",
"@storybook/addon-actions": "^4.1.2",
"@storybook/vue": "^4.1.2",
"babel-loader": "^8.0.4",
"babel-preset-vue": "^2.0.2",
"eslint": "^5.10.0",
"jasmine": "^3.3.1",
"jasmine-core": "^3.3.0",
"karma": "^3.1.3",
"karma-chrome-launcher": "^2.2.0",
"karma-firefox-launcher": "^1.1.0",
"karma-jasmine": "^2.0.1",
"karma-safari-launcher": "^1.0.0",
"karma-webpack": "^3.0.5",
"replace-in-file": "^3.4.2",
"rollup": "^0.68.0",
"rollup-plugin-babel": "^4.1.0",
"rollup-plugin-replace": "^2.1.0",
"uglify-js": "^3.4.9",
"vue": "^2.5.21",
"vue-loader": "^15.4.2",
"vue-template-compiler": "^2.5.21"
}
}