-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
76 lines (76 loc) · 1.97 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
{
"name": "vue-timeselector",
"version": "1.0.0",
"description": "Simple customizable Vue.js timepicker component",
"author": "Alexis Colin <nesquimo@gmail.com>",
"repository": "git+https://github.com/alexiscolin/vue-timeselector.git",
"license": "MIT",
"main": "dist/VueTimeSelector.js",
"private": false,
"keywords": [
"vue",
"timepicker",
"timeselector",
"date",
"time",
"picker",
"custom",
"vuejs2"
],
"engines": {
"node": ">= 8.10.0"
},
"bugs": {
"url": "https://github.com/alexiscolin/vue-timeselector/issues"
},
"scripts": {
"start": "webpack-dev-server --hot --mode development --config demos/demos.config.js",
"build": "webpack --mode production --config webpack.config.js",
"test": "jest",
"styleguide": "vue-styleguidist server",
"styleguide:build": "vue-styleguidist build"
},
"dependencies": {
"acorn": "^6.3.0",
"vue": "^2.6.10"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.6.2",
"@babel/polyfill": "^7.6.0",
"@babel/preset-env": "^7.6.2",
"@vue/test-utils": "^1.0.0-beta.27",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^25.0.0",
"babel-loader": "^8.0.6",
"babel-preset-env": "^1.7.0",
"css-loader": "^2.0.1",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"jest": "^25.0.0",
"regenerator-runtime": "^0.13.3",
"vue-jest": "^3.0.5",
"vue-loader": "^15.7.1",
"vue-style-loader": "^4.1.2",
"vue-styleguidist": "^3.24.2",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.1",
"webpack-merge": "^4.2.2"
},
"jest": {
"moduleNameMapper": {
"^vue$": "vue/dist/vue.common.js"
},
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
".*\\.(vue)$": "<rootDir>/node_modules/vue-jest"
}
}
}