-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
66 lines (66 loc) · 2.31 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
62
63
64
65
66
{
"name": "vue2-event-calendar",
"version": "1.1.81",
"description": "A vue2 calendar component, have week and month two mode, custom render event",
"main": "dist/vue2-event-calendar.umd.js",
"scripts": {
"serve": "vue-cli-service serve dev/index.js",
"deploy": "npm run test && npm run build && npm run build-storybook && npm run build:docs",
"lint": "vue-cli-service lint src dev tests/*.js",
"test:unit": "vue-cli-service test:unit --coverage",
"test": "npm run lint && npm run test:unit",
"storybook": "start-storybook -p 6006 -s public",
"build": "vue-cli-service build --target lib --name vue2-event-calendar src/index.js --report",
"build:cjs": "rollup --config build/rollup.config.js",
"build:docs": "vue-cli-service build dev/index.js --dest docs --mode docs",
"build-storybook": "build-storybook"
},
"keywords": [
"vue",
"calendar"
],
"types": "types/index.d.ts",
"module": "dist/vue2-event-calendar.esm.js",
"author": "kitwang chan",
"license": "MIT",
"repository": "https://github.com/kitwon/vue2-event-calendar",
"devDependencies": {
"@babel/core": "^7.4.4",
"@storybook/addon-actions": "^5.0.11",
"@storybook/addon-links": "^5.0.11",
"@storybook/addon-storyshots": "^5.0.11",
"@storybook/addon-storysource": "^5.0.11",
"@storybook/addons": "^5.0.11",
"@storybook/vue": "^5.0.11",
"@vue/babel-helper-vue-jsx-merge-props": "^1.0.0",
"@vue/babel-preset-jsx": "^1.0.0",
"@vue/cli-plugin-babel": "^3.7.0",
"@vue/cli-plugin-eslint": "^3.7.0",
"@vue/cli-plugin-unit-jest": "^3.7.0",
"@vue/cli-service": "^3.7.0",
"@vue/eslint-config-airbnb": "^4.0.0",
"@vue/test-utils": "^1.0.0-beta.29",
"babel-core": "7.0.0-bridge.0",
"babel-loader": "^8.0.5",
"babel-plugin-require-context-hook": "^1.0.0",
"babel-preset-vue": "^2.0.2",
"dayjs": "^1.8.17",
"jest-vue-preprocessor": "^1.5.0",
"less": "^3.9.0",
"less-loader": "^4.1.0",
"postcss-flexbugs-fixes": "^4.1.0",
"rollup": "^1.27.8",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-vue": "^5.1.4",
"vue": "^2.6.10",
"vue-template-compiler": "^2.6.10"
},
"dependencies": {
"core-js": "2"
},
"peerDependencies": {
"dayjs": "^1.8.17",
"vue": "^2.6.10"
}
}