-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
82 lines (82 loc) · 2.05 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
{
"name": "simple-vue2-datetimepicker",
"version": "2.3.1",
"description": "a vue.js component for selecting dates/times",
"keywords": ["vue", "javascript", "date", "time", "picker", "datetime", "datepicker", "datetimepicker", "timepicker"],
"main": "dist/simple-vue2-datetimepicker.umd.js",
"module": "dist/simple-vue2-datetimepicker.esm.js",
"unpkg": "dist/simple-vue2-datetimepicker.min.js",
"files": [
"dist/*",
"src/*",
"public/*",
"*.json",
"*.js"
],
"repository": {
"type": "git",
"url": "https://github.com/jamespjarvis/simple-vue2-datetimepicker"
},
"scripts": {
"serve": "vue-cli-service serve",
"build": "cross-env NODE_ENV=production rollup --config build/rollup.config.js",
"lint": "vue-cli-service lint"
},
"devDependencies": {
"core-js": "^2.6.5",
"vue": "^2.6.10",
"@vue/cli-plugin-babel": "^3.7.0",
"@vue/cli-plugin-eslint": "^3.7.0",
"@vue/cli-service": "^3.7.0",
"@vue/eslint-config-prettier": "^4.0.1",
"babel-eslint": "^10.0.1",
"cross-env": "^5.2.0",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.0.0",
"lint-staged": "^8.1.5",
"rollup": "^1.4.1",
"rollup-plugin-buble": "^0.19.6",
"rollup-plugin-commonjs": "^9.2.1",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-scss": "^1.0.1",
"rollup-plugin-terser": "^4.0.4",
"rollup-plugin-vue": "^4.7.2",
"rollup-plugin-vue-inline-svg": "^1.0.1",
"sass": "^1.18.0",
"sass-loader": "^7.1.0",
"vue-svg-loader": "^0.12.0",
"vue-template-compiler": "^2.5.21"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/recommended",
"@vue/prettier"
],
"rules": {},
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,vue}": [
"vue-cli-service lint",
"git add"
]
}
}