-
-
Notifications
You must be signed in to change notification settings - Fork 594
/
package.json
86 lines (86 loc) · 2.7 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
{
"name": "vue-js-modal",
"description": "Modal Component for Vue.js",
"version": "2.0.1",
"author": "euvl <yev.dev@gmail.com>",
"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",
"vue-js",
"dialog",
"alert",
"modal",
"vue-js-modal",
"vue-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:client-no-css": "webpack --config ./build/webpack.client-no-css.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",
"lint:js": "eslint --ext js --ext jsx --ext vue src",
"lint:js:fix": "npm run lint:js -- --fix",
"test": "jest",
"build": "npm run build:client && npm run build:client-no-css && 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",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs"
},
"license": "MIT",
"browserslist": "> 0.25%, not dead",
"devDependencies": {
"@babel/core": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"@babel/plugin-proposal-optional-chaining": "^7.10.3",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/test-utils": "1.0.0-beta.31",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"css-loader": "^1.0.1",
"eslint": "^6.7.2",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-vue": "^6.2.2",
"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.13.1",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"sass-loader": "^7.1.0",
"ts-loader": "^6.2.2",
"uglifyjs-webpack-plugin": "^2.2.0",
"vue": "2.6.11",
"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.6.11",
"vue-test-utils": "^1.0.0-beta.11",
"vuepress": "^1.5.2",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-merge": "^4.2.2"
},
"peerDependencies": {
"vue": "^2.6.11"
},
"dependencies": {
"resize-observer-polyfill": "^1.5.1"
}
}