-
-
Notifications
You must be signed in to change notification settings - Fork 79
/
Copy pathpackage.json
30 lines (30 loc) · 1016 Bytes
/
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
{
"name": "zen",
"version": "1.0.0",
"description": "The node.js requirements to lint this project.",
"scripts": {
"lint-theme:css": "stylelint \"assets/sass/**/*.scss\"",
"lint-theme:js": "biome check",
"lint-project:css": "stylelint \"../../assets/sass/**/*.scss\"",
"lint-project:js": "biome check \"../../assets/js/**/*.js\"",
"lint-theme": "npm run lint-theme:css && npm run lint-theme:js",
"lint-project": "npm run lint-project:css && npm run lint-project:js",
"lint:css": "npm run lint-theme:css && npm run lint-project:css",
"lint:js": "npm run lint-theme:js && npm run lint-project:js",
"lint": "npm run lint:css && npm run lint:js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/frjo/hugo-theme-zen.git"
},
"author": "Fredrik Jonsson",
"license": "GPL-2.0",
"devDependencies": {
"stylelint": "^16.11.0",
"stylelint-config-standard-scss": "^13.1.0"
},
"engines": {
"node": ">=20.0.0"
},
"private": true
}