-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 1.11 KB
/
package.json
File metadata and controls
26 lines (26 loc) · 1.11 KB
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
{
"name": "zettle-woocommerce",
"version": "0.1.0",
"description": "PayPal Point of Sale for WooCommerce",
"repository": "https://github.com/inpsyde/PayPal-Zettle-POS",
"license": "GPL-2.0",
"author": "Inpsyde GmbH",
"scripts": {
"install:assets": "cd modules/paypal-pos-assets && npm ci",
"install:products-assets": "cd modules/paypal-pos-product-settings && npm ci",
"install:product-debug-assets": "cd modules/paypal-pos-product-debug && npm ci",
"postinstall": "run-s install:*",
"build:assets": "cd modules/paypal-pos-assets && yarn run build",
"build:products-assets": "cd modules/paypal-pos-product-settings && yarn run build",
"build:product-debug-assets": "cd modules/paypal-pos-product-debug && yarn run build",
"build": "run-p build:*",
"watch:assets": "cd modules/paypal-pos-assets && yarn run watch",
"watch:products-assets": "cd modules/paypal-pos-product-settings && yarn run watch",
"watch": "run-p watch:*"
},
"dependencies": {
"npm-run-all": "^4.1.5"
},
"devDependencies": {
}
}