-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
64 lines (64 loc) · 1.72 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
{
"name": "vuedialog",
"version": "1.0.2",
"scripts": {
"build": "npm run test && rm -rf ./dist && webpack --config ./webpack.config.js && webpack --config webpack.config.min.js",
"test": "karma start karma.unit.js",
"release": "bash ./release.sh"
},
"description": "Dialog windows for Vue (like confirm or alert), based on Vuedals.",
"main": "dist/vue-dialog.js",
"repository": {
"type": "git",
"url": "git+https://github.com/javisperez/vue-dialog.git"
},
"keywords": [
"vue",
"vuejs",
"vue-dialog",
"vuedialog",
"confirm",
"confirmation",
"alert",
"vuedals",
"hard confirm",
"plugin"
],
"author": {
"name": "Javis Perez",
"email": "javisperez@gmail.com"
},
"readme": "README.md",
"license": "MIT",
"bugs": {
"url": "https://github.com/javisperez/vue-dialog/issues"
},
"homepage": "https://github.com/javisperez/vue-dialog",
"dependencies": {
"deepmerge": "^1.3.2",
"vue-longpress": "^1.0.1",
"vuedals": "^1.1.1"
},
"devDependencies": {
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-2": "^6.22.0",
"webpack": "^1.14.0",
"webpack-merge": "^2.6.1",
"jasmine": "^2.5.2",
"jasmine-core": "^2.5.2",
"karma": "^1.1.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.0.0",
"karma-firefox-launcher": "^1.0.0",
"karma-jasmine": "^1.0.2",
"karma-mocha-reporter": "^2.0.4",
"karma-phantomjs-launcher": "^1.0.0",
"karma-safari-launcher": "^1.0.0",
"karma-sauce-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.0",
"karma-webpack": "^1.7.0"
}
}