-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.38 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
{
"name": "crdm-modern",
"version": "1.1.1",
"description": "A modern WordPress theme made for children's organizations",
"keywords": [
"wordpress",
"skaut",
"crdm",
"theme",
"children"
],
"homepage": "https://github.com/skaut/crdm-modern",
"bugs": {
"url": "https://github.com/skaut/crdm-modern/issues"
},
"license": "GPL-3.0-or-later",
"author": {
"name": "Marek Dědič",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/skaut/crdm-modern.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 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:*",
"update-translations": "gulp update-translations"
},
"dependencies": {
"dripicons": "^2.0.0"
},
"devDependencies": {
"@eslint-community/eslint-plugin-eslint-comments": "^4.4.1",
"@types/jquery": "^3.5.32",
"@types/wordpress__customize-browser": "^5.5.5",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.18.0",
"@wordpress/browserslist-config": "^6.16.0",
"@wordpress/eslint-plugin": "^22.2.0",
"@wordpress/stylelint-config": "^23.8.0",
"eslint": "^8.57.1",
"eslint-plugin-compat": "^6.0.2",
"eslint-plugin-deprecation": "^3.0.0",
"eslint-plugin-prefer-arrow-functions": "^3.4.2",
"eslint-plugin-simple-import-sort": "^12.1.1",
"gulp": "^5.0.0",
"gulp-clean-css": "^4.3.0",
"gulp-concat": "^2.6.1",
"gulp-inject-string": "^1.1.2",
"gulp-rename": "^2.0.0",
"gulp-terser": "^2.1.0",
"gulp-typescript": "^6.0.0-alpha.1",
"npm-run-all": "^4.1.5",
"ordered-read-streams": "^2.0.0",
"rimraf": "^6.0.1",
"stylelint": "^16.13.2",
"stylelint-config-standard": "^37.0.0",
"stylelint-no-unsupported-browser-features": "^8.0.2",
"typescript": "^5.7.3"
},
"browserslist": [
"extends @wordpress/browserslist-config"
]
}