-
Notifications
You must be signed in to change notification settings - Fork 471
/
package.json
80 lines (80 loc) · 2.98 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
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "easy-digital-downloads",
"version": "3.3.5",
"description": "The easiest way to sell digital products with WordPress.",
"private": true,
"author": "Easy Digital Downloads",
"license": "GPL-2.0-or-later",
"keywords": [
"wordpress",
"wordpress-plugin"
],
"homepage": "https://easydigitaldownloads.com",
"repository": {
"type": "git",
"url": "https://github.com/easydigitaldownloads/easy-digital-downloads/"
},
"bugs": {
"url": "https://github.com/easydigitaldownloads/easy-digital-downloads/issues"
},
"engines": {
"node": ">=10.0.0",
"npm": ">=6.9.0"
},
"main": "webpack.config.js",
"dependencies": {
"chart.js": "2.9.3",
"flot": "0.8.0-alpha",
"jquery-creditcardvalidator": "1.0.0",
"jquery-validation": "^1.19.3",
"jquery.payment": "3.0.0",
"moment": "2.29.3",
"moment-timezone": "0.5.23"
},
"devDependencies": {
"@wordpress/base-styles": "3.1.0",
"@wordpress/dom": "2.15.0",
"@wordpress/postcss-plugins-preset": "^1.6.0",
"@wordpress/scripts": "12.6.1",
"copy-webpack-plugin": "6.2.0",
"cross-env": "7.0.2",
"grunt": "^1.5.2",
"grunt-checktextdomain": "^1.0.1",
"grunt-cli": "^1.3.2",
"grunt-composer": "^0.4.5",
"grunt-contrib-clean": "^1.1.0",
"grunt-contrib-compress": "^1.4.3",
"grunt-contrib-copy": "^1.0.0",
"grunt-force-task": "^2.0.0",
"grunt-replace": "^2.0.1",
"load-grunt-tasks": "^3.5.2",
"locutus": "^2.0.11",
"lodash.foreach": "^4.5.0",
"micromodal": "^0.4.10",
"mini-css-extract-plugin": "0.9.0",
"postcss-rtl": "^1.7.3",
"uglify-es": "3.3.9",
"uglifyjs-webpack-plugin": "^1.1.2",
"uuid-random": "1.3.0",
"webpack": "4.44.2",
"webpack-cli": "3.3.12",
"webpack-fix-style-only-entries": "0.5.1",
"webpack-rtl-plugin": "^2.0.0"
},
"scripts": {
"build": "wp-scripts build --webpack-no-externals && npm run build:blocks && npm run translate && grunt build && npm run translate:lite",
"build:blocks": "cd includes/blocks && npm run build && cd ../../",
"dev": "cross-env NODE_ENV=production wp-scripts start --webpack-no-externals",
"lite": "grunt lite && npm run translate:lite && grunt compress:lite",
"local": "grunt build && npm run translate:lite && grunt compress",
"package": "npm run build && grunt compress",
"postinstall": "cd includes/blocks && npm install && cd ../../",
"pro": "grunt pro",
"repo": "grunt repo && npm run translate:repo",
"test:unit": "wp-scripts test-unit-js --config tests/jest/jest.config.js",
"translate": "grunt clean && wp i18n make-pot . languages/easy-digital-downloads.pot --exclude=node_modules,assets,tests,libraries --ignore-domain",
"translate:lite": "cd build/easy-digital-downloads && wp i18n make-pot . languages/easy-digital-downloads.pot --exclude=assets,libraries --ignore-domain && cd ../../",
"translate:repo": "cd build/easy-digital-downloads-public && wp i18n make-pot . languages/easy-digital-downloads.pot --exclude=assets,libraries --ignore-domain && cd ../../",
"update": "composer update --ignore-platform-reqs && composer run mozart"
}
}