-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
90 lines (90 loc) · 2.68 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
87
88
89
90
{
"name": "vue-img-viewer",
"version": "1.5.0",
"description": "基于 Vue 的轻量级图片预览组件",
"private": false,
"main": "dist/index.js",
"scripts": {
"dev": "webpack-dev-server --debug=dev --config examples/webpack.config.js",
"preview": "webpack-dev-server --debug=preview --config examples/webpack.config.js",
"prod": "webpack-dev-server --config examples/webpack.config.js",
"build": "NODE_ENV=production webpack --config webpack.config.js",
"commit": "git-cz",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"version": "npm run changelog && git add CHANGELOG.md",
"prepublishOnly": "npm run build"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/AnaniZhu/vue-img-viewer.git"
},
"keywords": [
"vue",
"component",
"image-preview"
],
"author": "Annani <https://github.com/AnaniZhu/>",
"license": "MIT",
"bugs": {
"url": "https://github.com/AnaniZhu/vue-img-viewer/issues"
},
"homepage": "https://github.com/AnaniZhu/vue-img-viewer#readme",
"husky": {
"hooks": {
"commit-msg": "node ./scripts/commitmsg.validate.js -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"peerDependencies": {
"vue": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.5.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.0",
"@babel/runtime": "^7.5.5",
"babel": "^6.23.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"babel-plugin-dynamic-import-node": "^2.3.0",
"commitizen": "^4.0.3",
"conventional-changelog-cli": "^2.0.31",
"css-loader": "^3.0.0",
"eslint": "^6.0.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^5.2.3",
"file-loader": "^4.0.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^4.2.3",
"import-http": "^0.3.1",
"node-sass": "^4.12.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"sass": "^1.22.3",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"uglifyjs-webpack-plugin": "^2.1.3",
"url-loader": "^2.0.1",
"vue": "^2.6.10",
"vue-img-viewer": "^1.3.1",
"vue-loader": "^15.7.0",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.35.2",
"webpack-bundle-analyzer": "^3.4.1",
"webpack-cli": "^3.3.5",
"webpack-dev-server": "^3.8.0",
"yargs": "^14.0.0"
}
}