woocommerce/packages/js/dependency-extraction-webpa.../package.json

68 lines
1.6 KiB
JSON

{
"name": "@woocommerce/dependency-extraction-webpack-plugin",
"version": "3.0.1",
"description": "WooCommerce Dependency Extraction Webpack Plugin",
"author": "Automattic",
"license": "GPL-2.0-or-later",
"keywords": [
"wordpress",
"woocommerce"
],
"engines": {
"node": "^20.11.1",
"pnpm": "9.1.3"
},
"homepage": "https://github.com/woocommerce/woocommerce/tree/trunk/packages/js/dependency-extraction-webpack-plugin/README.md",
"repository": {
"type": "git",
"url": "https://github.com/woocommerce/woocommerce.git"
},
"bugs": {
"url": "https://github.com/woocommerce/woocommerce/issues"
},
"main": "src/index.js",
"files": [
"src/",
"assets/"
],
"dependencies": {
"@wordpress/dependency-extraction-webpack-plugin": "^3.7.0"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@babel/core": "^7.23.5",
"@woocommerce/eslint-plugin": "workspace:*",
"eslint": "^8.55.0",
"jest": "~27.5.1",
"jest-cli": "~27.5.1",
"rimraf": "5.0.5",
"ts-jest": "~29.1.1",
"typescript": "^5.3.3",
"webpack": "^5.89.0",
"webpack-cli": "^3.3.12",
"wireit": "0.14.3"
},
"scripts": {
"changelog": "composer install && composer exec -- changelogger",
"lint": "pnpm --if-present '/^lint:lang:.*$/'",
"lint:fix": "pnpm --if-present '/^lint:fix:lang:.*$/'",
"lint:fix:lang:js": "eslint src --fix",
"lint:lang:js": "eslint --output-file eslint_report.json --format json src"
},
"lint-staged": {
"*.(t|j)s?(x)": [
"eslint --fix"
]
},
"config": {
"ci": {
"lint": {
"command": "lint",
"changes": "src/**/*.js"
}
}
}
}