forked from euvl/vue-js-modal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.03 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
{
"name": "vue-js-modal",
"description": "Modal Component for Vue.js",
"version": "1.3.31",
"author": "euvl <[email protected]>",
"main": "dist/index.js",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "https://github.com/euvl/vue-js-modal.git"
},
"types": "types/index.d.ts",
"keywords": [
"front-end",
"web",
"vue",
"vuejs",
"dialog",
"alert",
"modal",
"vue-js-modal"
],
"bugs": {
"url": "https://github.com/euvl/vue-js-modal/issues"
},
"scripts": {
"build:client": "webpack --config ./build/webpack.client.config.js --progress --hide-modules",
"build:ssr": "webpack --config ./build/webpack.ssr.config.js --progress --hide-modules",
"build:ssr-no-css": "webpack --config ./build/webpack.ssr-no-css.config.js --progress --hide-modules",
"test": "jest",
"build": "npm run build:client && npm run build:ssr && npm run build:ssr-no-css",
"watch": "webpack --config ./build/webpack.client.config.js --progress --hide-modules --watch",
"test:types": "tsc -p types/test"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"css-loader": "^1.0.1",
"file-loader": "^0.9.0",
"jest": "^23.6.0",
"jest-serializer-vue": "^2.0.2",
"mini-css-extract-plugin": "^0.4.5",
"node-sass": "^4.10.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"sass-loader": "^7.1.0",
"uglifyjs-webpack-plugin": "^2.0.1",
"vue": "^2.2.6",
"vue-hot-reload-api": "^2.0.8",
"vue-jest": "^3.0.1",
"vue-loader": "^15.0.0",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.2.6",
"vue-test-utils": "^1.0.0-beta.11",
"webpack": "^4.27.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.11",
"webpack-merge": "^4.1.4"
},
"peerDependencies": {
"vue": "^2.2.6"
},
"browserslist": "> 0.25%, not dead",
"dependencies": {}
}