-
Notifications
You must be signed in to change notification settings - Fork 209
/
package.json
67 lines (67 loc) · 2.06 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
{
"name": "vue2-daterange-picker",
"version": "0.6.7",
"description": "Vue2 date range picker based on https://github.com/dangrossman/bootstrap-daterangepicker (no jQuery)",
"author": "Nikola Kostadinov <[email protected]>",
"main": "dist/vue2-daterange-picker.umd.min.js",
"jsnext:main": "dist/vue2-daterange-picker.umd.min.js",
"private": false,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Innologica/vue2-daterange-picker"
},
"files": [
"dist",
"src"
],
"scripts": {
"components:parse": "node ./docs/.scripts/parse.js",
"components:watch": "watch \"npm run components:parse\" ./src",
"lint": "vue-cli-service lint",
"lib": "vue-cli-service build --target lib --name vue2-daterange-picker ./src/index.js",
"docs:dev": "concurrently \"npm run components:watch\" \"vuepress dev docs\"",
"docs:build": "vuepress build docs",
"prepublishOnly": "npm run lib",
"unit": "vue-cli-service test:unit"
},
"dependencies": {
"vue": "^2.6.10"
},
"devDependencies": {
"@babel/core": "^7.7.4",
"@babel/runtime": "^7.7.4",
"@vue/cli-plugin-babel": "^4.1.1",
"@vue/cli-plugin-eslint": "^4.1.1",
"@vue/cli-plugin-unit-mocha": "^4.1.1",
"@vue/cli-service": "^4.1.1",
"@vue/test-utils": "^1.0.0-beta.30",
"@vuedoc/parser": "^1.4.0",
"@vuepress/plugin-back-to-top": "^1.2.0",
"@vuepress/plugin-google-analytics": "^1.2.0",
"acorn": "^7.1.0",
"autoprefixer": "^9.7.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"babel-preset-vue": "^2.0",
"caniuse-lite": "^1.0.30001265",
"chai": "^4.1.2",
"concurrently": "^4.1.2",
"es6-symbol": "^3.1.3",
"eslint": "^6.7.2",
"eslint-plugin-vue": "^6.0.1",
"markdown-it-footnote": "^3.0.2",
"mockdate": "^2.0.5",
"node-sass": "^4.11.0",
"sass-loader": "^10.1.1",
"vue-template-compiler": "^2.6.10",
"vuepress": "^1.2",
"webpack": "^4.41.2"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}