-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
67 lines (67 loc) · 2.13 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
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "gravityforms",
"version": "4.8.0",
"description": "Gravity Forms driver for the WordPress payment processing library.",
"repository": {
"type": "git",
"url": "https://github.com/wp-pay-extensions/gravityforms"
},
"keywords": [
"wordpress",
"wp",
"pay",
"gravityforms",
"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/gravityforms/issues"
},
"homepage": "http://www.wp-pay.org/extensions/gravityforms/",
"browserslist": [
"last 2 versions"
],
"devDependencies": {
"@wordpress/env": "^10.0.0",
"autoprefixer": "^10.4.19",
"eslint": "^9.4.0",
"eslint-plugin-json": "^4.0.0",
"grunt": "^1.6.1",
"grunt-contrib-compass": "^1.1.1",
"grunt-contrib-cssmin": "^5.0.0",
"grunt-contrib-jshint": "^3.2.0",
"grunt-contrib-uglify": "^5.2.2",
"grunt-postcss": "^0.9.0",
"grunt-sass-lint": "^0.2.4",
"load-grunt-tasks": "^5.1.0",
"npm-run-all": "^4.1.5",
"sass-lint": "^1.13.1"
},
"scripts": {
"build-image": "npm-run-all build-image-*",
"build-image-svg-default": "svgo images/src/wp-pay.svg -o images/dist/wp-pay.svgo-min.svg",
"eslint": "eslint . --ext .json --ext .js",
"lint": "npm-run-all --parallel eslint sass-lint",
"sass-lint": "sass-lint --verbose",
"start": "wp-env start && npm run setup && npm run login",
"setup": "npm-run-all setup-*",
"setup-gravityforms": "wp-env run cli wp config set GF_LICENSE_KEY $GRAVITYFORMS_LICENSE_KEY",
"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"
}
}