-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
30 lines (30 loc) · 1.08 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
{
"name": "@pressbooks/pressbooks-jacobs",
"description": "This theme is named after American-Canadian activist, journalist, and author Jane Jacobs, who is responsible for the New Urbanism movement in urban studies. It is designed for academic writing, particularly textbooks, but is also suitable for fiction. Headings and body type are set in Montserrat.",
"author": "Pressbooks (Book Oven Inc.)",
"license": "GPL-3.0-or-later",
"engines": {
"node": ">= 18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pressbooks/pressbooks-jacobs.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
}
}
}