-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 1.85 KB
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
{
"name": "mosaico-cropper",
"version": "0.9.0",
"title": "Mosaico Cropper",
"description": "Modern image cropper with optional jQuery support - easy inline resize/crop/pan for images",
"keywords": [
"jquery",
"ui",
"widget",
"crop",
"resize",
"image",
"mosaico",
"cropper",
"vanilla-js",
"framework-agnostic",
"no-dependencies"
],
"repository": {
"type": "git",
"url": "git@github.com:voidlabs/mosaico-cropper.git"
},
"author": "Stefano Bagnara",
"license": "MIT",
"licenseurl": "http://www.opensource.org/licenses/mit-license.php",
"homepage": "https://github.com/voidlabs/mosaico-cropper",
"bugs": "https://github.com/voidlabs/mosaico-cropper/issues",
"peerDependencies": {
"jquery": "^3.6.0"
},
"peerDependenciesMeta": {
"jquery": {
"optional": true
}
},
"devDependencies": {
"@eslint/js": "^9.34.0",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"autoprefixer": "10.4.21",
"cssnano": "^7.1.1",
"eslint": "^9.34.0",
"express": "^5.1.0",
"globals": "^16.3.0",
"jimp": "^1.6.0",
"jsdom": "^26.1.0",
"less": "^4.4.1",
"postcss": "^8.5.6",
"terser": "^5.43.1",
"vite": "^7.1.3",
"vitest": "^3.2.4"
},
"overrides": {
"async": "3.2.3",
"minimist": "1.2.6",
"shelljs": "0.8.5",
"superagent": "7.1.2"
},
"browserslist": [
"last 2 versions",
"not dead",
"> 1%",
"IE 10",
"IE 11"
],
"type": "module",
"scripts": {
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"dev": "vite",
"build": "npm run lint && vite build",
"preview": "vite preview",
"start": "npm run dev",
"lockdeps": "npx npm-force-resolutions",
"test": "vitest",
"test:run": "vitest run",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage"
}
}