This repository has been archived by the owner on Apr 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.15 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
{
"name": "skaut-fio-bank-transactions",
"version": "1.2.3",
"description": "A WordPress plugin to show transactions from Fio Bank",
"keywords": [
"wordpress",
"skaut",
"fio",
"transactions"
],
"homepage": "https://wordpress.org/plugins/skaut-fio-bank-transactions",
"bugs": {
"url": "https://github.com/skaut/skaut-fio-bank-transactions/issues"
},
"license": "proprietary",
"author": {
"name": "David Odehnal",
"email": "[email protected]"
},
"contributors": [
{
"name": "Marek Dědič",
"email": "[email protected]",
"url": "https://dedic.eu"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/skaut/skaut-fio-bank-transactions.git"
},
"type": "module",
"scripts": {
"clean": "rimraf dist/*",
"prebuild": "npm run clean",
"build": "gulp build",
"lint:css:stylelint": "stylelint --color 'src/**/*.css'",
"lint:css": "run-p -c --aggregate-output lint:css:*",
"lint:php:phan": "export PHAN_DISABLE_XDEBUG_WARN=1; vendor/bin/phan",
"lint:php:phpcs": "vendor/bin/phpcs",
"lint:php:phpmd": "vendor/bin/phpmd src,.phan/config.php,scoper.inc.php text phpmd.xml",
"lint:php": "run-p -c --aggregate-output lint:php:*",
"lint:ts:eslint": "eslint --color 'src/**/*.ts' 'gulpfile.js'",
"lint:ts": "run-p -c --aggregate-output lint:ts:*",
"disabled_lint": "run-p -c --aggregate-output lint:*",
"lint": "npm run lint:php:phpcs"
},
"devDependencies": {
"@wordpress/browserslist-config": "^5.39.0",
"@wordpress/eslint-plugin": "^17.12.0",
"@wordpress/stylelint-config": "^21.39.0",
"eslint": "^8.57.0",
"eslint-plugin-compat": "^4.2.0",
"gulp": "^5.0.0",
"gulp-replace": "^1.1.4",
"gulp-shell": "^0.8.0",
"merge-stream": "^2.0.0",
"npm-run-all": "^4.1.5",
"rimraf": "^5.0.5",
"stylelint": "^14.16.1",
"stylelint-no-unsupported-browser-features": "^7.0.0"
},
"browserslist": [
"extends @wordpress/browserslist-config"
],
"dependencies": {
"datatables.net": "^1.13.11",
"datatables.net-dt": "^1.13.11",
"datatables.net-plugins": "^1.13.6",
"moment": "^2.30.1"
}
}