-
Notifications
You must be signed in to change notification settings - Fork 465
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.67 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.67 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
{
"name": "easy-digital-downloads",
"version": "3.6.9",
"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": ">=15.14.0",
"npm": ">=10.2.5"
},
"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",
"to-string-loader": "^1.2.0"
},
"devDependencies": {
"@playwright/test": "^1.54.0",
"@wordpress/dom": "^4.22.0",
"dotenv": "^17.2.3",
"@wordpress/scripts": "30.15.0",
"cross-env": "^7.0.3",
"grunt": "^1.5.2",
"grunt-checktextdomain": "^1.0.1",
"grunt-cli": "^1.3.2",
"grunt-composer": "^0.4.5",
"grunt-contrib-clean": "2.0.1",
"grunt-contrib-compress": "2.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-force-task": "3.0.0",
"grunt-replace": "^2.0.1",
"load-grunt-tasks": "^5.1.0",
"locutus": "^2.0.11",
"micromodal": "0.6.1",
"rtlcss-webpack-plugin": "^4.0.7",
"uuid-random": "1.3.2",
"webpack-remove-empty-scripts": "^1.0.4"
},
"scripts": {
"build": "wp-scripts build --webpack-no-externals",
"build:blocks": "cd includes/blocks && npm run build && cd ../../",
"dev": "cross-env NODE_ENV=production wp-scripts start --webpack-no-externals",
"lite": "grunt lite && grunt replace:pot_lite && grunt compress:lite",
"local": "grunt build && grunt compress",
"package": "npm run build && npm run build:blocks && npm run translate && grunt build && grunt replace:pot_lite && grunt compress",
"postinstall": "cd includes/blocks && npm install && cd ../../",
"pro": "grunt pro",
"repo": "grunt repo && grunt replace:pot_repo",
"test:e2e": "playwright test --config=e2e/playwright.config.js",
"test:e2e:headed": "playwright test --config=e2e/playwright.config.js --headed",
"test:e2e:debug": "playwright test --config=e2e/playwright.config.js --debug",
"test:e2e:report": "playwright show-report",
"test:e2e:down": "docker compose -f docker-compose.e2e.yml down -v && rm -f e2e/.docker-env",
"translate": "grunt clean && wp i18n make-pot . languages/easy-digital-downloads.pot --exclude=node_modules,assets,tests,libraries --ignore-domain",
"update": "composer update --ignore-platform-reqs && composer run mozart"
}
}