-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.39 KB
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
{
"name": "shapely",
"version": "1.3.4",
"description": "Build and lint tooling for the Shapely WordPress theme.",
"homepage": "https://www.colorlib.com",
"author": "Colorlib",
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "git+https://github.com/puikinsh/shapely.git"
},
"private": true,
"type": "module",
"engines": {
"node": ">=20"
},
"scripts": {
"lint": "npm-run-all --continue-on-error --parallel lint:js lint:css lint:php",
"lint:js": "eslint assets/js",
"lint:css": "stylelint style.css assets/css/custom.css",
"lint:php": "node tools/lint-php.mjs",
"lint:fix": "npm-run-all lint:js:fix lint:css:fix",
"lint:js:fix": "eslint assets/js --fix",
"lint:css:fix": "stylelint style.css assets/css/custom.css --fix",
"i18n": "node tools/make-pot.mjs",
"i18n:check": "node tools/check-textdomain.mjs",
"images": "node tools/optimize-images.mjs",
"prebuild": "npm-run-all i18n:check version:check",
"build": "node tools/build-zip.mjs",
"verify": "npm-run-all lint i18n:check version:check",
"version:check": "node tools/check-version.mjs"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"archiver": "^8.0.0",
"eslint": "^10.8.0",
"globals": "^17.9.0",
"npm-run-all2": "^9.0.3",
"sharp": "^0.35.3",
"stylelint": "^17.14.1",
"stylelint-config-standard": "^40.0.0"
}
}