-
-
Notifications
You must be signed in to change notification settings - Fork 79
/
package.json
33 lines (33 loc) · 1.16 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
{
"name": "zen",
"version": "1.0.0",
"description": "The node.js requirements to lint this project.",
"scripts": {
"lint-theme:css": "stylelint --quiet-deprecation-warnings \"assets/sass/**/*.scss\"",
"lint-theme:js": "eslint \"assets/js/**/*.js\"",
"lint-project:css": "stylelint --quiet-deprecation-warnings \"../../assets/sass/**/*.scss\"",
"lint-project:js": "eslint \"../../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": {
"eslint": "^8.45.0",
"eslint-plugin-template": "^0.7.0",
"stylelint": "^15.10.1",
"stylelint-config-standard-scss": "^10.0.0",
"stylelint-scss": "^5.0.1"
},
"engines": {
"node": ">=16.0.0"
},
"private": true
}