-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
94 lines (94 loc) · 3.25 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
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "skaut-google-drive-gallery",
"version": "2.13.14",
"description": "A WordPress gallery using Google Drive as file storage",
"keywords": [
"wordpress",
"skaut",
"google",
"drive",
"gallery"
],
"homepage": "https://wordpress.org/plugins/skaut-google-drive-gallery",
"bugs": {
"url": "https://github.com/skaut/skaut-google-drive-gallery/issues"
},
"license": "MIT",
"author": "Marek Dědič",
"repository": {
"type": "git",
"url": "git+https://github.com/skaut/skaut-google-drive-gallery.git"
},
"type": "module",
"scripts": {
"clean": "rimraf dist/*",
"prebuild": "npm run clean",
"build": "gulp build",
"lint:css:stylelint": "stylelint --color 'src/**/*.css'",
"lint:css": "run-p -c --aggregate-output lint:css:*",
"lint:php:phan": "export PHAN_DISABLE_XDEBUG_WARN=1; vendor/bin/phan",
"lint:php:phpcs": "vendor/bin/phpcs",
"lint:php:phpmd": "vendor/bin/phpmd src,tests,.phan/config.php,scoper.inc.php text phpmd.xml",
"lint:php:phpstan": "vendor/bin/phpstan",
"lint:php": "run-p -c --aggregate-output lint:php:*",
"lint:ts:eslint": "eslint --color 'src/**/*.ts' 'gulpfile.js' '*.config.{js,ts}'",
"lint:ts": "run-p -c --aggregate-output lint:ts:*",
"lint": "run-p -c --aggregate-output lint:*",
"pretest:php:phpunit": "[ -e vendor/google ] && rm -r vendor/google; composer dump-autoload",
"test:php:phpunit": "vendor/bin/phpunit",
"posttest:php:phpunit": "composer install",
"test:php": "run-p -c --aggregate-output test:php:*",
"test": "run-p -c --aggregate-output test:*"
},
"engines": {
"npm": "^8.0.0"
},
"dependencies": {
"imagelightbox": "^3.1.0",
"imagesloaded": "^5.0.0",
"justified-layout": "github:skaut/justified-layout"
},
"devDependencies": {
"@eslint-community/eslint-plugin-eslint-comments": "^4.4.1",
"@types/imagesloaded": "^4.1.6",
"@types/jquery": "^3.5.32",
"@types/react": "^18.0.0 <19",
"@types/wordpress__block-editor": "^11.5.16",
"@types/wordpress__blocks": "^12.5.16",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.18.0",
"@wordpress/browserslist-config": "^6.14.0",
"@wordpress/editor": "^14.14.0",
"@wordpress/element": "^6.14.0",
"@wordpress/eslint-plugin": "^22.0.0",
"@wordpress/stylelint-config": "^23.6.0",
"eslint": "^8.57.1",
"eslint-plugin-compat": "^6.0.2",
"eslint-plugin-deprecation": "^3.0.0",
"eslint-plugin-prefer-arrow-functions": "^3.4.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-simple-import-sort": "^12.1.1",
"gulp": "^5.0.0",
"gulp-clean-css": "^4.3.0",
"gulp-inject-string": "^1.1.2",
"gulp-rename": "^2.0.0",
"gulp-replace": "^1.1.4",
"gulp-shell": "^0.8.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"stylelint": "^16.12.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-no-unsupported-browser-features": "^8.0.2",
"terser-webpack-plugin": "^5.3.11",
"tinymce": "^7.6.0",
"ts-loader": "^9.5.1",
"typescript": "^5.7.2",
"vinyl-named": "^1.1.0",
"webpack-stream": "^7.0.0"
},
"browserslist": [
"extends @wordpress/browserslist-config"
]
}