-
Notifications
You must be signed in to change notification settings - Fork 84
/
package.json
84 lines (84 loc) · 2.25 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
{
"name": "vue-date-pick",
"version": "1.5.1",
"description": "Date time picker based on Vue",
"homepage": "https://dbrekalo.github.io/vue-date-pick/",
"repository": {
"type": "git",
"url": "https://github.com/dbrekalo/vue-date-pick"
},
"main": "dist/vueDatePick.js",
"license": "MIT",
"files": [
"/dist",
"/src"
],
"keywords": [
"datepicker",
"datetimepicker",
"date",
"time",
"picker",
"pick",
"vue"
],
"scripts": {
"dev": "npm run dev:docs",
"dev:docs": "vuepress dev documentation",
"build": "npm run build:lib && npm run build:docs",
"build:lib": "NODE_ENV=production webpack --progress",
"build:docs": "vuepress build documentation",
"lint": "eslint src/vueDatePick.vue -c .eslintrc.js --color",
"test": "BABEL_ENV=test karma start --single-run --browsers ChromeHeadless",
"watch:test": "BABEL_ENV=test karma start --browsers ChromeHeadless"
},
"dependencies": {
"vue": "^2.6.0"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@vue/test-utils": "^1.0.0-beta.33",
"autoprefixer": "^9.1.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.0",
"babel-plugin-istanbul": "^5.2.0",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^6.2.2",
"fecha": "^4.2.0",
"karma": "^5.0.4",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.2",
"karma-mocha": "^2.0.1",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.32",
"karma-webpack": "^4.0.2",
"mini-css-extract-plugin": "^0.9.0",
"mocha": "^7.1.2",
"postcss-loader": "^3.0.0",
"sass": "^1.54.9",
"sass-loader": "^8.0.2",
"uglifyjs-webpack-plugin": "^2.0.1",
"vue-loader": "^15.4.2",
"vuepress": "^0.14.4",
"webpack": "^4.25.1",
"webpack-cli": "^3.1.2"
},
"engines": {
"node": ">= 6.0.0",
"npm": ">= 3.0.0"
},
"browserslist": [
"last 4 versions",
"Chrome >= 30",
"Firefox >= 30",
"Explorer >= 9"
]
}