This repository has been archived by the owner on Oct 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.63 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
{
"name": "skaut-bazar",
"version": "1.3.7",
"description": "A WordPress plugin to create a small secondhand store",
"keywords": [
"wordpress",
"skaut",
"second-hand",
"store"
],
"homepage": "https://wordpress.org/plugins/skaut-bazar",
"bugs": {
"url": "https://github.com/skaut/skaut-bazar/issues"
},
"license": "proprietary",
"author": {
"name": "Marek Dědič",
"email": "[email protected]",
"url": "https://dedic.eu"
},
"repository": {
"type": "git",
"url": "git+https://github.com/skaut/skaut-bazar.git"
},
"scripts": {
"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.1.0",
"@wordpress/eslint-plugin": "^9.3.0",
"@wordpress/stylelint-config": "^19.1.0",
"eslint": "^7.32.0",
"eslint-plugin-compat": "^4.0.2",
"gulp": "^4.0.2",
"npm-run-all": "^4.1.5",
"stylelint": "^13.13.1",
"stylelint-no-unsupported-browser-features": "^5.0.4"
},
"browserslist": [
"extends @wordpress/browserslist-config"
]
}