-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
64 lines (64 loc) · 1.76 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": "vue-zydialog",
"version": "0.0.5",
"scripts": {
"dev": "webpack-dev-server --inline --hot --host 0.0.0.0",
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules",
"test": "standard --plugin vue '**/*.vue' && mocha-webpack --webpack-config webpack.test.conf.js \"test/**/*.spec.js\""
},
"description": "A Vue.js dialog module",
"main": "dist/vue-zydialog.min.js",
"repository": {
"type": "git",
"url": "git+https://github.com/mogita/vue-zydialog.git"
},
"keywords": [
"vue",
"dialog",
"confirm",
"alert",
"vue-component",
"component"
],
"author": "mogita <[email protected]>",
"contributors": [
"LitoMore <[email protected]> (https://github.com/LitoMore)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/mogita/vue-zydialog/issues"
},
"homepage": "https://github.com/mogita/vue-zydialog#readme",
"peerDependencies": {
"vue": "2.x"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"chai": "^4.1.1",
"cross-env": "^5.0.5",
"css-loader": "^0.28.4",
"eslint-plugin-vue": "^2.1.0",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"html-webpack-plugin": "^2.30.1",
"mocha": "^3.5.0",
"mocha-webpack": "^0.7.0",
"standard": "^10.0.3",
"vue": "^2.4.2",
"vue-hot-reload-api": "^2.1.0",
"vue-html-loader": "^1.2.4",
"vue-loader": "^13.0.4",
"vue-style-loader": "^3.0.1",
"vue-template-compiler": "^2.4.2",
"webpack": "^2.7.0",
"webpack-dev-server": "^2.7.1"
},
"dependencies": {},
"standard": {
"ignore": "/docs"
}
}