-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.89 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
{
"name": "vuejs-datepicker",
"version": "2.0.2",
"publishConfig": {
"access": "public"
},
"description": "A simple Vue.js datepicker component. Supports disabling of dates, inline mode, translations. Fork of initial vuejs-datepicker which is abandoned.",
"keywords": [
"vue",
"datepicker",
"date-picker",
"calendar"
],
"main": "dist/vuejs-datepicker.common.js",
"module": "dist/vuejs-datepicker.esm.js",
"unpkg": "dist/vuejs-datepicker.min.js",
"style": "dist/vuejs-datepicker.css",
"files": [
"src",
"dist"
],
"author": "Charlie Kassel <[email protected]>",
"contributors": [
"Simon Tretter <[email protected]>"
],
"private": false,
"license": "MIT",
"scripts": {
"build": "npm run lint && npm run build:main:browser && npm run build:main:es && npm run build:main:umd && npm run build:main:cjs",
"build:main:browser": "rollup --config build/rollup.config.browser.js",
"build:main:es": "rollup --config build/rollup.config.es.js",
"build:main:umd": "rollup --config build/rollup.config.umd.js",
"build:main:cjs": "rollup --config build/rollup.config.cjs.js",
"prepublishOnly": "npm run lint && npm run build",
"dev": "cross-env NODE_ENV=development rollup --config build/rollup.config.es.js --watch",
"serve": "rollup -c build/serve.js --watch",
"test": "jest --config test/unit/jest.conf.js --coverage",
"lint": "eslint --ext .js,.vue src test/unit/specs"
},
"pre-commit": [
"lint",
"test"
],
"peerDependencies": {
"vue": "^2.6.10",
"moment": "2.x"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/plugin-external-helpers": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/runtime": "^7.4.4",
"@vue/test-utils": "^1.0.0-beta.12",
"autoprefixer": "^9.5.1",
"babel-jest": "^24.7.1",
"chalk": "^2.4.2",
"clean-css": "^4.2.1",
"coveralls": "^3.0.3",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-node": "^9.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"jest": "^24.7.1",
"lolex": "^4.0.1",
"pre-commit": "^1.2.2",
"rollup": "^1.11.2",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-buble": "^0.19.6",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-css-only": "^1.0.0",
"rollup-plugin-livereload": "^1.0.0",
"rollup-plugin-node-resolve": "^4.2.3",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-serve": "^1.0.1",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-vue": "^5.0.0",
"semver": "^6.0.0",
"vue": "^2.5.16",
"moment": "2.x",
"vue-eslint-parser": "^6.0.4",
"vue-jest": "^4.0.0-beta.2",
"vue-template-compiler": "^2.6.10"
}
}