PluginProbe
Photonic Gallery & Lightbox for Flickr, SmugMug & Others / 3.33
Photonic Gallery & Lightbox for Flickr, SmugMug & Others v3.33
3.36 3.35 3.34 3.33 2.19 2.20 2.21 2.22 2.23 2.24 2.25 2.26 2.27 2.28 2.29 2.30 2.31 2.32 2.33 2.34 2.40 2.41 2.42 2.43 2.44 All 141 releases
photonic / grunt / package.json

package.json in Photonic Gallery & Lightbox for Flickr, SmugMug & Others 3.33, at grunt/package.json

58 lines 1.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "name": "photonic",
3 "version": "1.0.0",
4 "description": "The most comprehensive gallery and lightbox plugin",
5 "homepage": "https://aquoid.com/plugins/photonic",
6 "author": {
7 "name": "Sayontan Sinha",
8 "url": "https://mynethome.net"
9 },
10 "license": "GPL-3.0",
11 "dependencies": {},
12 "devDependencies": {
13 "grunt": "~1.3.0",
14 "grunt-contrib-concat": "^1.0.1",
15 "grunt-contrib-copy": "^1.0.0",
16 "grunt-contrib-cssmin": "^3.0.0",
17 "grunt-webpack": "^4.0.2",
18 "grunt-wp-i18n": "~1.0.3",
19 "@babel/cli": "^7.10.1",
20 "@babel/core": "^7.10.2",
21 "@babel/plugin-transform-arrow-functions": "^7.10.1",
22 "@babel/preset-env": "^7.12.7",
23 "babel-loader": "^8.2.1",
24 "babel-plugin-transform-es2015-arrow-functions": "^6.22.0",
25 "webpack": "^5.5.0",
26 "webpack-cli": "^4.2.0",
27 "webpack-merge": "^5.4.0"
28 },
29 "babel": {
30 "plugins": [
31 "@babel/transform-arrow-functions",
32 "@babel/transform-async-to-generator",
33 "@babel/transform-modules-commonjs",
34 "@babel/plugin-transform-runtime",
35 "@babel/plugin-proposal-class-properties",
36 "@babel/plugin-syntax-class-properties"
37 ]
38 },
39 "scripts": {
40 "watch": "webpack --mode=development --watch --config webpack.config.js",
41 "build": "webpack --config webpack.config.js",
42 "build-all": "webpack && cross-env NODE_ENV=production webpack -p"
43 },
44 "browserslist": {
45 "es5": [
46 "web",
47 "es5"
48 ],
49 "es6": [
50 "Chrome >= 60",
51 "Safari >= 10.1",
52 "iOS >= 10.3",
53 "Firefox >= 54",
54 "Edge >= 15"
55 ]
56 }
57 }
58