-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
86 lines (86 loc) · 2.4 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
85
86
{
"name": "vue-business-hours",
"description": "Vue component for selecting business hours.",
"version": "1.4.1",
"author": "sbarry50",
"repository": {
"type": "git",
"url": "https://github.com/sbarry50/vue-business-hours.git"
},
"license": "MIT",
"private": false,
"main": "dist/vue-business-hours.umd.js",
"module": "dist/vue-business-hours.esm.js",
"unpkg": "dist/vue-business-hours.min.js",
"files": [
"dist/*",
"src/*"
],
"scripts": {
"serve": "vue-cli-service serve",
"build": "npm run build:umd & npm run build:es & npm run build:unpkg",
"build:umd": "rollup --config build/rollup.config.js --format umd --file dist/vue-business-hours.umd.js",
"build:es": "rollup --config build/rollup.config.js --format es --file dist/vue-business-hours.esm.js",
"build:unpkg": "rollup --config build/rollup.config.js --format iife --file dist/vue-business-hours.min.js",
"lint": "vue-cli-service lint"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.26",
"@fortawesome/free-solid-svg-icons": "^5.12.0",
"@fortawesome/vue-fontawesome": "^0.1.9",
"axios": "^0.18.1",
"core-js": "^2.6.11",
"i": "^0.3.6",
"moment": "^2.24.0",
"npm": "^6.13.4",
"uniqid": "^5.2.0",
"vue-js-toggle-button": "^1.3.3"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.12.1",
"@vue/cli-plugin-eslint": "^3.12.1",
"@vue/cli-service": "^3.12.1",
"babel-eslint": "^10.0.3",
"cross-env": "^5.2.1",
"eslint": "^5.8.0",
"eslint-plugin-vue": "^5.2.3",
"minimist": "^1.2.0",
"node-sass": "^4.13.0",
"rollup": "^1.29.0",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-commonjs": "^9.2.1",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^4.2.4",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-terser": "^4.0.4",
"rollup-plugin-vue": "^4.7.2",
"sass-loader": "^7.3.1",
"vue": "^2.6.11",
"vue-template-compiler": "^2.6.11"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"rules": {},
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}