-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
25 lines (25 loc) · 875 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
{
"name": "@pressbooks/pressbooks-press",
"author": "Ed Beck",
"description": "A child theme for SUNY Press.",
"license": "gpl-3.0-or-later",
"engines": {
"node": ">= 10"
},
"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"
},
"eslintConfig": {
"extends": "./node_modules/pressbooks-build-tools/config/eslint.js"
},
"stylelint": {
"extends": "./node_modules/pressbooks-build-tools/config/stylelint.js"
}
}