forked from woocommerce/grow
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.07 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
{
"name": "woocommerce-grow",
"version": "0.1.0",
"description": "This repository is a container for packages, mostly dev tools to serve the Grow Team. The packages here are too experimental or too Grow-specific to be shared Woo-wide.",
"scripts": {
"lint:js": "wp-scripts lint-js --ext .js,.mjs",
"lint:php": "vendor/bin/phpcs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/woocommerce/grow.git"
},
"author": "WooCommerce",
"license": "GPL-3.0-or-later",
"engines": {
"node": ">=18"
},
"devDependencies": {
"@woocommerce/eslint-plugin": "^2.2.0",
"@wordpress/scripts": "^30.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "npm:[email protected]",
"typescript": "~5.1.6"
},
"overrides": {
"@woocommerce/eslint-plugin": {
"@wordpress/eslint-plugin@<17.13.0": "^17.13.0"
}
},
"eslintConfig": {
"extends": [
"plugin:@woocommerce/eslint-plugin/recommended"
],
"settings": {
"import/resolver": "node"
},
"ignorePatterns": [
"!.github"
]
}
}