-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
53 lines (53 loc) · 1.5 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
{
"name": "@daxiazilong/image-preview",
"version": "2.3.0",
"description": "preview image on web page。rotate,zoom.etc. 移动端JS 图片预览 插件 支持 预览图片,旋转,放大(双指/双击)。",
"keywords": [
"image preview",
"viewer",
"preview image"
],
"main": "release/image-preview/image-preview-cjs-min.js",
"module": "release/image-preview/image-preview-esm-min.js",
"types": "release/types/core/image-preview.d.ts",
"scripts": {
"start": "webpack serve --open Chrome.exe --mode=development",
"build": "node scripts/build.js",
"compileTs": "tsc --project ./src",
"buildTest": "webpack --mode=production",
"genModule": "./scripts/genModule.sh",
"release": "standard-version"
},
"repository": {
"url": "https://github.com/daxiazilong/image-preview"
},
"author": "zilong",
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@types/node": "^15.12.1",
"html-webpack-plugin": "^5.3.1",
"husky": "^7.0.1",
"rollup": "^2.32.0",
"rollup-plugin-terser": "^7.0.2",
"shelljs": "^0.8.5",
"standard-version": "^7.0.1",
"ts-loader": "^9.2.3",
"typescript": "^4.3.4",
"vue": "^2.6.10",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^4.15.1"
},
"standard-version": {
"skip": {
"tag": true
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"license": "MIT"
}