forked from pronamic/wp-pay-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 3.19 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 3.19 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
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@wp-pay/core",
"version": "2.3.1",
"description": "Core components for the WordPress payment processing library.",
"repository": {
"type": "git",
"url": "https://github.com/wp-pay/core"
},
"keywords": [
"wordpress",
"wp",
"pay",
"core",
"gateway",
"pronamic"
],
"author": {
"name": "Pronamic",
"email": "info@pronamic.nl",
"url": "http://www.pronamic.nl/"
},
"contributors": [
{
"name": "Remco Tolsma",
"email": "info@remcotolsma.nl",
"url": "http://www.remcotolsma.nl/"
}
],
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/wp-pay/core/issues"
},
"homepage": "http://www.wp-pay.org/",
"dependencies": {
"Flot": "github:flot/flot#958e5fd43c6dff4bab3e1fd5cb6109df5c1e8003",
"accounting": "^0.4.1",
"icon-gen": "^2.0.0",
"jquery": "^3.4.1",
"tippy.js": "^3.4.1"
},
"devDependencies": {
"autoprefixer": "^9.7.4",
"cssnano": "^4.1.10",
"eslint": "^6.8.0",
"eslint-plugin-json": "^2.1.1",
"grunt": "^1.1.0",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-imagemin": "^3.1.0",
"grunt-contrib-sass": "^1.0.0",
"grunt-contrib-uglify": "^4.0.1",
"grunt-postcss": "^0.9.0",
"grunt-webfont": "^1.7.2",
"load-grunt-tasks": "^5.1.0",
"npm-run-all": "^4.1.5",
"postcss-eol": "0.0.8",
"sass": "^1.26.3",
"sass-lint": "^1.13.1",
"terser": "^4.6.7"
},
"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",
"build-image-svg-white": "svgo images/src/wp-pay-white.svg -o images/dist/wp-pay-white.svgo-min.svg",
"build-image-svg-wp-admin": "svgo images/src/wp-pay-wp-admin-fresh-base.svg -o images/dist/wp-pay-wp-admin-fresh-base.svgo-min.svg",
"build-image-png-512": "rsvg-convert -w 512 -h 512 images/src/wp-pay.svg -o images/src/wp-pay-512.png",
"build-image-png-512-min": "pngquant images/src/wp-pay-512.png --output images/dist/wp-pay-512.pngquant-min.png --force",
"build-image-png-white-512": "rsvg-convert -w 512 -h 512 images/src/wp-pay-white.svg -o images/src/wp-pay-white-512.png",
"build-image-png-white-512-min": "pngquant images/src/wp-pay-white-512.png --output images/dist/wp-pay-white-512.pngquant-min.png --force",
"build-image-ico": "icon-gen --input images/src/wp-pay.svg --output images/dist --ico name=wp-pay --icns name=wp-pay -r",
"eslint": "eslint . --ext .json --ext .js",
"lint": "npm-run-all --parallel eslint sass-lint",
"sass-lint": "sass-lint --verbose",
"js-build": "cp js/src/*.js js/dist",
"js-minify": "npm-run-all js-minify-*",
"js-minify-admin": "terser --compress --mangle --output js/dist/admin.min.js js/src/admin.js",
"js-minify-admin-reports": "terser --compress --mangle --output js/dist/admin-reports.min.js js/src/admin-reports.js",
"js-minify-admin-tour": "terser --compress --mangle --output js/dist/admin-tour.min.js js/src/admin-tour.js",
"js-minify-block-payment-form": "terser --compress --mangle --output js/dist/block-payment-form.min.js js/src/block-payment-form.js",
"sass": "sass scss:css"
}
}