forked from Godofbrowser/vuejs-dialog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 3.11 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
{
"name": "vuejs-dialog",
"version": "1.4.2",
"description": "A lightweight, promise based alert, prompt and confirm dialog",
"main": "dist/vuejs-dialog.min.js",
"directories": {
"docs": "docs"
},
"scripts": {
"dev": "node node_modules/cross-env/dist/bin/cross-env NODE_ENV=development webpack-dev-server --inline --progress --open --config webpack.docs.config.js ",
"docs": "node node_modules/cross-env/dist/bin/cross-env NODE_ENV=production webpack --config=webpack.docs.config.js --progress --hide-modules",
"build": "node node_modules/cross-env/dist/bin/cross-env NODE_ENV=production webpack --config=webpack.config.js --progress --hide-modules",
"test:watch": "node node_modules/cross-env/dist/bin/cross-env NODE_ENV=test BABEL_ENV=test ./node_modules/karma/bin/karma start test/unit/karma.config.js --delay",
"test": "node node_modules/cross-env/dist/bin/cross-env NODE_ENV=test BABEL_ENV=test ./node_modules/karma/bin/karma start test/unit/karma.config.js --single-run --delay"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/Godofbrowser/vuejs-dialog.git"
},
"keywords": [
"vue",
"vuejs",
"confirm",
"dialog",
"alert",
"simple",
"loading-dialog",
"hard-confirm",
"soft-confirm"
],
"author": {
"name": "Ajeh Emeke",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Godofbrowser/vuejs-dialog/issues"
},
"homepage": "https://github.com/Godofbrowser/vuejs-dialog#readme",
"devDependencies": {
"@vue/test-utils": "^1.0.0-beta.20",
"autoprefixer": "^7.1.4",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.2",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-2": "^6.24.1",
"chai": "^4.1.2",
"cross-env": "^3.2.4",
"css-loader": "^0.25.0",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-babel": "^4.1.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",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^3.2.0",
"karma": "^1.7.1",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-phantomjs-shim": "^1.5.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.31",
"karma-webpack": "^2.0.5",
"mini-css-extract-plugin": "^0.4.1",
"mocha": "^4.0.1",
"mocha-webpack": "^0.7.0",
"node-sass": "^4.14.1",
"postcss-loader": "^2.1.6",
"promise-polyfill": "^6.0.2",
"sass-loader": "^6.0.6",
"should": "^13.1.1",
"style-loader": "^0.18.2",
"vue": "^2.4.2",
"vue-cli": "^2.9.6",
"vue-loader": "^15.2.5",
"vue-notification": "^1.3.12",
"vue-style-loader": "^3.0.1",
"vue-template-compiler": "^2.5.16",
"webpack": "^4.15.1",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.4",
"webpack-notifier": "^1.5.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}