-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.97 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
{
"name": "sift-for-woocommerce",
"version": "1.0.0-beta",
"description": "A plugin to integrate WooCommerce with Sift Science Fraud Detection",
"author": {
"name": "WooCommerce.com",
"url": "https://woocommerce.com"
},
"license": "GPL-2.0-or-later",
"keywords": [
"wordpress"
],
"homepage": "https://woocommerce.com",
"repository": "https://github.com/woocommerce/sift-for-woocommerce",
"bugs": "https://github.com/woocommerce/sift-for-woocommerce/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": "wp-env start",
"stop": "wp-env destroy",
"clean": "wp-env clean development",
"destroy": "wp-env destroy",
"test": "wp-env run tests-cli --env-cwd=wp-content/plugins/sift-for-woocommerce vendor/bin/phpunit",
"test:coverage": "wp-env run tests-cli --env-cwd=wp-content/plugins/sift-for-woocommerce bin/test-with-coverage.sh"
}
}