-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
83 lines (83 loc) · 2.08 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
{
"name": "vue-confirm-dialog",
"description": "simple action confirm",
"version": "1.1.0",
"author": "Onur Aslan <[email protected]>",
"private": false,
"main": "dist/index.js",
"scripts": {
"build:base": "cross-env NODE_ENV=production webpack --config webpack.config.js --progress --hide-modules",
"build:ssr": "cross-env NODE_ENV=production webpack --config webpack.config.ssr.js --progress --hide-modules",
"build": "npm run build:base && npm run build:ssr",
"lint": "vue-cli-service lint"
},
"peerDependencies": {
"vue": "^2.6.10"
},
"devDependencies": {
"vue": "^2.6.10",
"cross-env": "^3.0.0",
"@vue/cli-plugin-babel": "^3.11.0",
"@vue/cli-plugin-eslint": "^3.11.0",
"@vue/cli-service": "^3.11.0",
"@vue/eslint-config-prettier": "^5.0.0",
"babel-eslint": "^10.0.1",
"babel-core": "^6.26.3",
"babel-loader": "^6.0.0",
"babel-preset-env": "^1.7.0",
"babel-preset-latest": "^6.0.0",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^5.16.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-vue": "^5.0.0",
"prettier": "^1.18.2",
"vue-template-compiler": "^2.6.10",
"vue-loader": "^11.1.4",
"css-loader": "^0.25.0",
"node-sass": "^4.11.0",
"sass-loader": "^5.0.1",
"file-loader": "^0.9.0",
"webpack": "^2.7.0",
"webpack-dev-server": "^3.1.11",
"webpack-merge": "^4.1.1"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"@vue/prettier"
],
"rules": {},
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"repository": {
"type": "git",
"url": "git+https://github.com/aslanon/vue-confirm.git"
},
"keywords": [
"vue",
"confirm",
"dialog",
"popup",
"plugin"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/aslanon/vue-confirm/issues"
},
"homepage": "https://github.com/aslanon/vue-confirm#readme"
}