-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathpackage.json
49 lines (49 loc) · 1.83 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
{
"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_ENV=development webpack --progress --hide-modules",
"watch": "yarn install-if-deps-outdated && cross-env NODE_ENV=development webpack --watch --progress --hide-modules",
"build-production": "yarn install-if-deps-outdated && cross-env 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"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"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": "^4.13.1",
"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"
}
}