-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.7 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
{
"name": "fast-smooth-scroll",
"description": "This lightweight plugin enhances user experience by enabling smooth scrolling for anchor links without the need for jQuery or other dependencies.",
"license": "GPL-2.0-or-later",
"keywords": [
"wordpress",
"plugin",
"smooth scroll",
"scroll animation",
"performance",
"anchor links",
"lightweight"
],
"homepage": "https://wordpress.org/plugins/fast-smooth-scroll/",
"author": {
"name": "Felix Arntz",
"email": "hello@felix-arntz.me",
"url": "https://felix-arntz.me"
},
"repository": "git+https://github.com/felixarntz/fast-smooth-scroll.git",
"devDependencies": {
"@wordpress/env": "^10.6.0",
"@wordpress/scripts": "^28.4.0",
"fast-glob": "^3.3.2"
},
"scripts": {
"build": "wp-scripts build",
"format-js": "wp-scripts format",
"format-php": "wp-env run cli --env-cwd=wp-content/plugins/$(basename $(pwd)) composer format",
"phpstan": "wp-env run cli --env-cwd=wp-content/plugins/$(basename $(pwd)) composer phpstan",
"lint-js": "wp-scripts lint-js",
"lint-php": "wp-env run cli --env-cwd=wp-content/plugins/$(basename $(pwd)) composer lint",
"pretest-php": "wp-env run tests-cli --env-cwd=wp-content/plugins/$(basename $(pwd)) composer update",
"test-php": "wp-env run tests-cli --env-cwd=wp-content/plugins/$(basename $(pwd)) vendor/bin/phpunit -c phpunit.xml.dist --verbose",
"pretest-php-multisite": "wp-env run tests-cli --env-cwd=wp-content/plugins/$(basename $(pwd)) composer update",
"test-php-multisite": "wp-env run tests-cli --env-cwd=wp-content/plugins/$(basename $(pwd)) vendor/bin/phpunit -c tests/phpunit/multisite.xml --verbose",
"wp-env": "wp-env"
}
}