-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.24 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
{
"name": "memberpress",
"version": "4.8.2",
"description": "MemberPress driver for the WordPress payment processing library.",
"repository": {
"type": "git",
"url": "https://github.com/wp-pay-extensions/memberpress"
},
"keywords": [
"wordpress",
"wp",
"pay",
"memberpress",
"gateway",
"pronamic"
],
"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-3.0",
"bugs": {
"url": "https://github.com/wp-pay-extensions/memberpress/issues"
},
"homepage": "http://www.wp-pay.org/extensions/memberpress/",
"devDependencies": {
"@wordpress/env": "^5.2.0",
"npm-run-all": "^4.1.5"
},
"scripts": {
"start": "wp-env start && npm run setup && npm run login",
"setup": "npm-run-all setup-*",
"setup-mollie": "wp-env run cli wp config set MOLLIE_API_KEY $MOLLIE_API_KEY",
"setup-buckaroo-website-key": "wp-env run cli wp config set BUCKAROO_WEBSITE_KEY $BUCKAROO_WEBSITE_KEY",
"setup-buckaroo-secret-key": "wp-env run cli wp config set BUCKAROO_SECRET_KEY $BUCKAROO_SECRET_KEY",
"login": "wp-env run cli wp user one-time-login admin"
}
}