-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.56 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.56 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
{
"name": "reviewbird",
"version": "1.0.19",
"description": "WordPress plugin for reviewbird integration",
"main": "index.js",
"files": [
"reviewbird-plugin.php",
"readme.txt",
"composer.json",
"package.json",
"assets/build/**",
"assets/css/**",
"languages/**",
"templates/**",
"src/**",
"vendor/**",
"!**/.gitkeep",
"!**/.DS_Store"
],
"scripts": {
"build": "wp-scripts build",
"dev": "wp-scripts start",
"plugin-zip": "npm run build && composer install --no-dev && wp-scripts plugin-zip && composer install",
"lint:js": "wp-scripts lint-js",
"lint:css": "wp-scripts lint-style",
"lint:php": "phpcs --standard=WordPress .",
"format:php": "phpcbf --standard=WordPress .",
"test": "wp-scripts test-unit-js",
"make:pot": "wp i18n make-pot . languages/reviewbird.pot --exclude=\".*,.*/**,node_modules/**,vendor/**,tests/**,assets/build/**\" --domain=\"reviewbird\" --slug=\"reviewbird\"",
"make:json": "rm -f languages/*.json && wp i18n make-json languages '--use-map=[\"assets/build/map-admin.json\"]' --no-purge"
},
"keywords": [
"wordpress",
"plugin",
"reviews",
"woocommerce"
],
"author": "Reviewbird",
"license": "GPL-2.0-or-later",
"devDependencies": {
"@wordpress/scripts": "^30.26.0",
"autoprefixer": "^10.4.16",
"postcss": "^8.4.31",
"tailwindcss": "^3.4.0",
"webpack-bundle-output": "^1.1.0"
},
"dependencies": {
"@wordpress/components": "^25.0.0",
"@wordpress/data": "^9.0.0",
"@wordpress/element": "^5.0.0",
"@wordpress/i18n": "^4.0.0",
"@wordpress/notices": "^4.0.0",
"classnames": "^2.3.2"
}
}