forked from charliekassel/vuejs-datepicker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.79 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "vuejs-datepicker",
"version": "1.6.2",
"description": "A simple Vue.js datepicker component. Supports disabling of dates, inline mode, translations",
"keywords": [
"vue",
"datepicker",
"date-picker",
"calendar"
],
"main": "dist/vuejs-datepicker.js",
"module": "dist/vuejs-datepicker.esm.js",
"unpkg": "dist/vuejs-datepicker.min.js",
"files": [
"src",
"dist"
],
"author": "Charlie Kassel <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/charliekassel/vuejs-datepicker"
},
"bugs": {
"url": "https://github.com/charliekassel/vuejs-datepicker/issues"
},
"private": false,
"license": "MIT",
"scripts": {
"build": "npm run lint && rm -rf dist/* && rollup -c scripts/build.js && rollup -c scripts/build-locale.js",
"serve": "rollup -c scripts/serve.js --watch",
"test": "jest --config test/unit/jest.conf.js --coverage",
"lint": "eslint --ext .js,.vue src test/unit/specs",
"prepublishOnly": "npm run build"
},
"pre-commit": [
"lint"
],
"dependencies": {
"date-fns": "^2.4.1"
},
"peerDependencies": {
"vue": "^2.6.10"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/node": "^7.4.5",
"@babel/plugin-external-helpers": "^7.2.0",
"@babel/plugin-transform-modules-commonjs": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-stage-2": "^7.0.0",
"@babel/register": "^7.4.4",
"@babel/runtime": "^7.4.5",
"@vue/test-utils": "^1.0.0-beta.12",
"autoprefixer": "^8.3.0",
"babel-eslint": "^7.1.1",
"babel-jest": "^24.8.0",
"chalk": "^1.1.3",
"connect-history-api-fallback": "^1.3.0",
"coveralls": "^3.0.4",
"eslint": "^3.19.0",
"eslint-config-standard": "^6.2.1",
"eslint-friendly-formatter": "^2.0.7",
"eslint-plugin-html": "^2.0.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1",
"eventsource-polyfill": "^0.9.6",
"jest": "^24.8.0",
"jest-serializer-vue": "^2.0.2",
"lolex": "^1.5.2",
"opn": "^4.0.2",
"ora": "^1.2.0",
"parse5": "^2.1.0",
"pre-commit": "^1.2.2",
"rimraf": "^2.6.0",
"rollup": "^1.16.2",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-livereload": "^1.0.1",
"rollup-plugin-node-resolve": "^5.0.4",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-serve": "^1.0.1",
"rollup-plugin-terser": "^5.0.0",
"rollup-plugin-vue": "^5.0.0",
"semver": "^5.3.0",
"shelljs": "^0.8.3",
"stylus": "^0.54.5",
"vue": "^2.6.10",
"vue-jest": "^4.0.0-beta.2",
"vue-server-renderer": "^2.6.10",
"vue-template-compiler": "^2.6.10"
}
}