-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.27 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.27 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
{
"name": "regenerate-thumbnails",
"version": "3.1.6",
"description": "A WordPress plugin for regenerating the thumbnails for one or more of your image uploads. Useful when changing their sizes or your theme.",
"homepage": "https://alex.blog/wordpress-plugins/regenerate-thumbnails/",
"author": "Alex Mills (Viper007Bond)",
"license": "GPL-2.0+",
"repository": {
"type": "git",
"url": "git+https://github.com/automattic/regenerate-thumbnails.git"
},
"bugs": {
"url": "https://github.com/automattic/regenerate-thumbnails/issues"
},
"scripts": {
"build": "yarn install-if-deps-outdated && cross-env NODE_OPTIONS=--openssl-legacy-provider NODE_ENV=development webpack --progress --hide-modules",
"watch": "yarn install-if-deps-outdated && cross-env NODE_OPTIONS=--openssl-legacy-provider NODE_ENV=development webpack --watch --progress --hide-modules",
"build-production": "yarn install-if-deps-outdated && cross-env NODE_OPTIONS=--openssl-legacy-provider NODE_ENV=production webpack --mode=production --progress --hide-modules",
"install-if-deps-outdated": "( yarn check 2> /dev/null || yarn install --check-files ) && ( check-node-version --package --print || exit 0 )",
"distclean": "rm -rf node_modules && rm -rf dist"
},
"engines": {
"node": ">=8",
"yarn": "^1.3.2"
},
"dependencies": {
"vue": "^2.5.13",
"vue-router": "^3.0.1"
},
"resolutions": {
"cipher-base": "1.0.5",
"elliptic": "6.6.1",
"form-data": "2.5.5",
"json-schema": "0.4.0",
"loader-utils": "1.4.2",
"minimist": "1.2.8",
"pbkdf2": "3.1.3",
"sha.js": "2.4.12",
"socket.io-parser": "3.3.3",
"xmlhttprequest-ssl": "1.6.3"
},
"devDependencies": {
"@babel/core": "^7.29.7",
"@babel/preset-env": "^7.29.7",
"babel-core": "7.0.0-bridge.0",
"babel-loader": "^7.1.5",
"browser-sync": "^2.26.7",
"browser-sync-webpack-plugin": "^1.2.0",
"check-node-version": "^3.2.0",
"clean-webpack-plugin": "^0.1.18",
"cross-env": "^5.1.3",
"css-loader": "^3.4.1",
"file-loader": "^1.1.6",
"node-sass": "^8.0.0",
"sass-loader": "^6.0.6",
"terser-webpack-plugin": "^2.3.1",
"vue-loader": "^14.2.4",
"vue-template-compiler": "^2.5.13",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
}
}