-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
92 lines (92 loc) · 2.96 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
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "skautis-integration",
"version": "1.1.30",
"description": "A WordPress plugin for integration with SkautIS",
"keywords": [
"wordpress",
"skaut",
"skautis"
],
"homepage": "https://wordpress.org/plugins/skautis-integration",
"bugs": {
"url": "https://github.com/skaut/skautis-integration/issues"
},
"license": "proprietary",
"author": {
"name": "David Odehnal",
"email": "info@davidodehnal.cz"
},
"contributors": [
{
"name": "Marek Dědič",
"email": "marek@dedic.eu",
"url": "https://dedic.eu"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/skaut/skautis-integration.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,phpstan-bootstrap.php text phpmd.xml",
"lint:php:phpstan": "vendor/bin/phpstan",
"lint:php": "run-p -c --aggregate-output lint:php:*",
"lint:ts:eslint": "eslint --color 'src/**/*.ts' 'gulpfile.js' '*.config.{js,ts}'",
"lint:ts": "run-p -c --aggregate-output lint:ts:*",
"lint": "run-p -c --aggregate-output lint:*"
},
"devDependencies": {
"@eslint-community/eslint-plugin-eslint-comments": "^4.4.1",
"@types/jquery": "^3.5.32",
"@types/jqueryui": "^1.12.23",
"@types/select2": "^4.0.63",
"@types/tinymce": "^4.6.9",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.18.0",
"@wordpress/browserslist-config": "^6.15.0",
"@wordpress/eslint-plugin": "^22.1.1",
"@wordpress/stylelint-config": "^23.7.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-compat": "^6.0.2",
"eslint-plugin-deprecation": "^3.0.0",
"eslint-plugin-prefer-arrow-functions": "^3.4.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"gulp": "^5.0.0",
"gulp-clean-css": "^4.3.0",
"gulp-rename": "^2.0.0",
"gulp-replace": "^1.1.4",
"gulp-shell": "^0.8.0",
"gulp-terser": "^2.1.0",
"gulp-typescript": "^6.0.0-alpha.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"stylelint": "^16.12.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-no-unsupported-browser-features": "^8.0.2",
"typescript": "^5.7.3"
},
"browserslist": [
"extends @wordpress/browserslist-config"
],
"dependencies": {
"datatables.net": "^2.2.1",
"datatables.net-dt": "^2.2.1",
"datatables.net-plugins": "^2.1.7",
"font-awesome": "^4.7.0",
"interactjs": "^1.10.27",
"jQuery-QueryBuilder": "^3.0.0",
"jquery.repeater": "^1.2.1",
"select2": "^4.1.0-rc.0"
}
}