-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.82 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
{
"name": "mollie",
"version": "4.12.0",
"description": "Mollie driver for the WordPress payment processing library.",
"author": {
"name": "Pronamic",
"email": "[email protected]",
"url": "http://www.pronamic.nl/"
},
"contributors": [
{
"name": "Remco Tolsma",
"email": "[email protected]",
"url": "http://www.remcotolsma.nl/"
}
],
"license": "GPL-2.0-or-later",
"keywords": [
"wordpress",
"wp",
"pay",
"mollie",
"gateway",
"pronamic"
],
"homepage": "http://www.wp-pay.org/gateways/mollie/",
"repository": {
"type": "git",
"url": "https://github.com/wp-pay-gateways/mollie"
},
"bugs": {
"url": "https://github.com/wp-pay-gateways/mollie/issues"
},
"devDependencies": {
"@wordpress/env": "^9.10.0",
"@wordpress/prettier-config": "^3.15.0",
"@wordpress/scripts": "^27.9.0",
"npm-run-all": "^4.1.5",
"prettier": "npm:wp-prettier@^3.0.3"
},
"prettier": "@wordpress/prettier-config",
"scripts": {
"build": "wp-scripts build assets/src/card-field.js assets/src/wc-legacy-checkout.js --output-path=assets/dist",
"start": "wp-scripts start assets/src/card-field.js assets/src/wc-legacy-checkout.js --output-path=assets/dist",
"lint-js": "wp-scripts lint-js assets/src",
"lint:pkg-json": "wp-scripts lint-pkg-json",
"lint:style": "wp-scripts lint-style 'assets/src/**/*.scss'",
"wp-env-setup": "npm-run-all wp-env-setup-*",
"wp-env-setup-mollie": "wp-env run cli wp config set MOLLIE_API_KEY $MOLLIE_API_KEY",
"wp-env-setup-buckaroo-website-key": "wp-env run cli wp config set BUCKAROO_WEBSITE_KEY $BUCKAROO_WEBSITE_KEY",
"wp-env-setup-buckaroo-secret-key": "wp-env run cli wp config set BUCKAROO_SECRET_KEY $BUCKAROO_SECRET_KEY",
"wp-env-setup-plugins": "wp-env run cli wp plugin activate pronamic-ideal pronamic-pay-mollie",
"wp-env-after-start": "npm-run-all wp-env-setup"
}
}