-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
30 lines (30 loc) · 969 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": "@pressbooks/pressbooks-clarke",
"description": "Named after Arthur C. Clarke, this is a simple book theme, with some light modern touches. Good for fiction and non-fiction. Body font is Tinos; headers Lato.",
"author": "Pressbooks (Book Oven Inc.)",
"license": "GPL-3.0-or-later",
"engines": {
"node": ">= 18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pressbooks/pressbooks-clarke.git"
},
"dependencies": {},
"devDependencies": {
"pressbooks-build-tools": "^4.0.0"
},
"scripts": {
"fix": "npm run -s fix:styles",
"fix:styles": "stylelint --fix \"assets/styles/**/*.scss\" scss",
"lint": "npm run -s lint:styles",
"lint:styles": "stylelint \"assets/styles/**/*.scss\" scss",
"test": "npm run -s lint"
},
"stylelint": {
"extends": "./node_modules/pressbooks-build-tools/config/stylelint.js",
"rules": {
"no-invalid-position-at-import-rule": null
}
}
}