-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathpackage.json
executable file
·66 lines (66 loc) · 2.36 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
{
"name": "woo-wallet",
"title": "TeraWallet - WooCommerce Wallet",
"version": "1.5.0",
"description": "A powerful, extendable WooCommerce wallet system which support payment, partial payment, cashback reward program as well as refund for your WooCommerce store.",
"main": "Gruntfile.js",
"repository": {
"type": "git",
"url": "git+https://[email protected]/malsubrata/woo-wallet.git"
},
"keywords": [
"woocommerce-wallet",
"wallet",
"wordpress-plugin"
],
"author": "StandaloneTech",
"license": "GPL-3.0+",
"engines": {
"node": ">=6.9.4",
"npm": ">=1.1.0"
},
"bugs": {
"url": "https://github.com/malsubrata/woo-wallet/issues"
},
"homepage": "https://github.com/malsubrata/woo-wallet#readme",
"browserslist": [
"extends @wordpress/browserslist-config"
],
"devDependencies": {
"@woocommerce/dependency-extraction-webpack-plugin": "^3.0.0",
"@wordpress/browserslist-config": "^5.39.0",
"@wordpress/scripts": "27.7.0",
"autoprefixer": "^10.4.19",
"cross-env": "7.0.3",
"grunt": "^1.6.1",
"grunt-checktextdomain": "^1.0.1",
"grunt-contrib-clean": "^2.0.1",
"grunt-contrib-concat": "^2.1.0",
"grunt-contrib-cssmin": "^5.0.0",
"grunt-contrib-jshint": "^3.2.0",
"grunt-contrib-uglify": "^5.2.2",
"grunt-contrib-watch": "^1.1.0",
"grunt-postcss": "^0.9.0",
"grunt-rtlcss": "^2.0.2",
"grunt-sass": "^3.1.0",
"grunt-shell": "^4.0.0",
"grunt-stylelint": "^0.19.0",
"grunt-wp-i18n": "^1.0.3",
"node-sass": "^9.0.0",
"sass-loader": "^14.2.1",
"stylelint": "^16.4.0"
},
"dependencies": {
"postcss": "^8.4.38"
},
"scripts": {
"start": "wp-scripts start",
"build": "wp-scripts build && npm run i18n:build",
"build-watch": "grunt watch",
"i18n": "npm run i18n:build",
"i18n:build": "npm run i18n:pot && ./bin/build_i18n.sh",
"i18n:pot": "php -d xdebug.max_nesting_level=512 $(which wp) i18n make-pot --exclude=\"node_modules/,languages/,assets/, build/\" --headers='{\"Report-Msgid-Bugs-To\":\"https://github.com/malsubrata/woo-wallet/issues\", \"language-team\":\"StandaloneTech <[email protected]>\"}' . languages/woo-wallet.pot",
"i18n:json": "$(which wp) i18n make-json languages --no-purge",
"check-engines": "wp-scripts check-engines"
}
}