-
Notifications
You must be signed in to change notification settings - Fork 84
/
package.json
64 lines (64 loc) · 1.56 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
{
"name": "vue-datepicker-local",
"version": "1.0.19",
"description": "A datepicker for Vue.js",
"main": "src/index.js",
"files": [
"dist/**",
"src/**",
"LICENSE",
"README.md"
],
"browserify": {
"transform": [
[
"babelify"
],
[
"vueify"
]
]
},
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server --open --hot",
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules"
},
"repository": {
"type": "git",
"url": "git+https://github.com/weifeiyue/vue-datepicker-local.git"
},
"keywords": [
"vue",
"datepicker",
"components"
],
"author": "weifeiyue <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/weifeiyue/vue-datepicker-local/issues"
},
"homepage": "https://github.com/weifeiyue/vue-datepicker-local#readme",
"dependencies": {
"vue": "^2.5.15"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"cross-env": "^5.1.4",
"css-loader": "^0.28.10",
"eslint": "^4.18.2",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-html": "^4.0.2",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.0.1",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.11",
"vue-loader": "^14.2.1",
"vue-template-compiler": "^2.5.15",
"webpack": "^3.11.0",
"webpack-dev-server": "2.11.2"
}
}