forked from richardtallent/vue-simple-calendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "vue-simple-calendar",
"version": "3.0.0",
"description": "Simple calendar event control",
"author": "richardtallent <richard@tallent.us>",
"license": "MIT",
"main": "dist/vue-simple-calendar.js",
"repository": "https://github.com/richardtallent/vue-simple-calendar",
"private": false,
"scripts": {
"build": "rimraf ./dist && webpack --config ./webpack.config.js --mode production"
},
"dependencies": {},
"devDependencies": {
"autoprefixer": "^8.4.1",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-friendly-formatter": "^4.0.1",
"eslint-import-resolver-webpack": "^0.9.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-html": "^4.0.3",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-vue": "^4.5.0",
"file-loader": "^1.1.11",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.4.0",
"optimize-css-assets-webpack-plugin": "^4.0.1",
"postcss-loader": "^2.1.5",
"rimraf": "^2.6.2",
"stylelint": "^9.2.0",
"stylelint-config-standard": "^18.2.0",
"url-loader": "^1.0.1",
"vue": "^2.5.16",
"vue-loader": "^15.0.9",
"vue-style-loader": "^4.1.0",
"vue-template-compiler": "^2.5.16",
"webpack": "^4.7.0",
"webpack-cli": "^2.1.2",
"webpack-merge": "^4.1.2"
},
"engines": {
"node": ">= 6.0.0",
"npm": ">= 5.0.0"
},
"browserslist": [
"> 1%",
"ie >= 11"
],
"prettier": {
"useTabs": true,
"semi": false,
"singleQuote": false,
"bracketSpacing": true,
"trailingComma": "es5"
},
"stylelint": {
"extends": "stylelint-config-standard",
"rules": {
"indentation": "tab"
}
},
"eslintConfig": {
"env": {
"browser": true,
"es6": true,
"amd": true,
"node": true
},
"globals": {
"Vue": true
},
"extends": [
"eslint:recommended",
"plugin:vue/recommended"
],
"rules": {
"vue/html-indent": "tab",
"vue/max-attributes-per-line": 3,
"no-console": "warn"
}
},
"eslintIgnore": [
"node_modules/*.*"
],
"postcss": {
"plugins": {
"autoprefixer": {},
"cssnano": {}
}
}
}