-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 1000 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 1000 Bytes
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
{
"name": "opengraph-fallback-embed",
"version": "1.3.7",
"description": "WordPress plugin that provides an embed block based on a site's OpenGraph tags.",
"private": true,
"devDependencies": {
"@resvg/resvg-js": "^2.6.2",
"@wordpress/env": "^11.2.0",
"@wordpress/scripts": "^31.6.0",
"npm-run-all": "^4.1.5"
},
"scripts": {
"build": "wp-scripts build --webpack-src-dir=src/blocks && node bin/build-icons.js",
"start": "wp-scripts start --webpack-src-dir=src/blocks",
"lint": "npm-run-all --parallel lint:*",
"lint:fix": "npm-run-all --parallel lint:*:fix",
"lint:js": "wp-scripts lint-js src/ bin/",
"lint:js:fix": "wp-scripts lint-js src/ bin/ --fix",
"lint:css": "wp-scripts lint-style 'src/**/*.css'",
"lint:css:fix": "wp-scripts lint-style 'src/**/*.css' --fix",
"lint:php": "composer phpcs",
"lint:php:fix": "composer phpcbf",
"test": "wp-env --config .wp-env.test.json run cli --env-cwd=wp-content/plugins/opengraph-fallback-embed vendor/bin/phpunit"
}
}