mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-06 10:55:00 +08:00
The spread operator package seems to be old and included by default in Babel 7. And it probably was not used properly anyway because there was huge wall of warnings about it when building js.
25 lines
676 B
JSON
25 lines
676 B
JSON
{
|
|
"name": "ppc-button",
|
|
"version": "1.0.0",
|
|
"license": "GPL-3.0-or-later",
|
|
"main": "resources/js/button.js",
|
|
"dependencies": {
|
|
"deepmerge": "^4.2.2"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.19",
|
|
"@babel/preset-env": "^7.19",
|
|
"babel-loader": "^8.2",
|
|
"cross-env": "^7.0.3",
|
|
"file-loader": "^6.2.0",
|
|
"sass": "^1.42.1",
|
|
"sass-loader": "^12.1.0",
|
|
"webpack": "^5.74",
|
|
"webpack-cli": "^4.10"
|
|
},
|
|
"scripts": {
|
|
"build": "cross-env BABEL_ENV=default NODE_ENV=production webpack",
|
|
"watch": "cross-env BABEL_ENV=default NODE_ENV=production webpack --watch",
|
|
"dev": "cross-env BABEL_ENV=default webpack --watch"
|
|
}
|
|
}
|