-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathpackage.json
47 lines (47 loc) · 1.27 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
{
"name": "vodal",
"version": "2.4.0",
"description": "A vue modal with animations.",
"main": "dist/index.js",
"scripts": {
"dev": "node_modules/.bin/webpack-dev-server --mode development --config ./build/webpack.dev.conf.js",
"build:doc": "webpack -p --hide-modules --config ./build/webpack.dev.conf.js",
"build": "webpack -p --hide-modules --config ./build/webpack.prod.conf.js",
"release": "bash ./build/release.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chenjiahan/vodal.git"
},
"keywords": [
"vue",
"modal",
"animation",
"dialog"
],
"author": "neverland",
"license": "MIT",
"bugs": {
"url": "https://github.com/chenjiahan/vodal/issues"
},
"homepage": "https://github.com/chenjiahan/vodal#readme",
"peerDependencies": {
"vue": "^2.5.21"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"babel-loader": "^8.0.5",
"css-loader": "^2.1.0",
"del": "^3.0.0",
"shelljs": "^0.8.3",
"uglifyjs-webpack-plugin": "^2.1.1",
"vue": "^2.5.21",
"vue-loader": "^15.5.1",
"vue-template-compiler": "^2.5.21",
"webpack": "^4.28.3",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14",
"webpack-merge": "^4.2.1"
}
}