This repository has been archived by the owner on Nov 13, 2024. It is now read-only.
generated from a8cteam51/team51-plugin-scaffold
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.91 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
{
"name": "sift-decisions",
"version": "0.0.1-alpha",
"description": "A plugin to integrate WooCommerce with Sift Science Fraud Detection",
"author": {
"name": "WordPress.com Special Projects Team",
"url": "https://wpspecialprojects.wordpress.com"
},
"license": "GPL-3.0-or-later",
"keywords": [
"wordpress"
],
"homepage": "https://wordpress.org/a8cteam51/sift-decisions/",
"repository": "https://github.com/a8cteam51/sift-decisions",
"bugs": "https://github.com/a8cteam51/sift-decisions/issues",
"engines": {
"node": ">=18.15",
"npm": ">=9.5"
},
"devDependencies": {
"@csstools/postcss-sass": "^5.0.1",
"@wordpress/browserslist-config": "^5.9.1",
"@wordpress/env": "^10.8.0",
"@wordpress/postcss-plugins-preset": "^4.10.2",
"@wordpress/scripts": "^25.3.4",
"npm-run-all": "^4.1.5",
"postcss-cli": "^10.1.0",
"rtlcss": "^4.0.0"
},
"rtlcssConfig": {
"options": {
"autoRename": false,
"autoRenameStrict": false,
"blacklist": {},
"clean": true,
"greedy": false,
"processUrls": false,
"stringMap": []
},
"plugins": [],
"map": false
},
"browserslist": [
"extends @wordpress/browserslist-config"
],
"scripts": {
"build": "npm-run-all --sequential build:**",
"format": "npm-run-all --sequential format:**",
"lint": "npm-run-all --sequential lint:**",
"lint:pkg-json": "wp-scripts lint-pkg-json",
"lint:readme-md": "wp-scripts lint-md-docs README.md",
"packages-update": "wp-scripts packages-update --dist-tag=wp-6.2",
"check-engines": "wp-scripts check-engines",
"check-licenses": "wp-scripts check-licenses",
"start": "npm-run-all --parallel start:**",
"test": "wp-env run tests-cli --env-cwd=wp-content/plugins/sift-decisions vendor/bin/phpunit",
"test:coverage": "wp-env run tests-cli --env-cwd=wp-content/plugins/sift-decisions bin/test-with-coverage.sh"
}
}