-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (26 loc) · 1.19 KB
/
package.json
File metadata and controls
27 lines (26 loc) · 1.19 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
{
"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": ">= 6.9.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pressbooks/pressbooks-jacobs.git"
},
"dependencies": {},
"devDependencies": {},
"scripts": {
"install-build-tools": "npm install --no-save pressbooks-build-tools",
"fix": "npm run -s fix:styles",
"fix:styles": "cross-env NODE_ENV=development node_modules/stylelint/bin/stylelint.js --fix \"assets/styles/**/*.scss\" --syntax scss",
"lint": "npm run -s lint:styles",
"lint:styles": "cross-env NODE_ENV=development node_modules/stylelint/bin/stylelint.js \"assets/styles/**/*.scss\" --syntax scss",
"test": "npm run -s lint"
},
"stylelint": {
"extends": "./node_modules/pressbooks-build-tools/config/stylelint.js"
}
}