You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
81 lines
2.1 KiB
81 lines
2.1 KiB
{ |
|
"name": "@pressbooks/pressbooks-aldine", |
|
"author": "Pressbooks (Book Oven Inc.) <code@pressbooks.com>", |
|
"homepage": "https://github.com/pressbooks/pressbooks-aldine/", |
|
"description": "Aldine is the default theme for the home page of Pressbooks networks. It is named for the Aldine Press, founded by Aldus Manutius in 1494, who is regarded by many as the world’s first publisher.", |
|
"keywords": [ |
|
"publishing", |
|
"catalog", |
|
"pressbooks", |
|
"default-theme" |
|
], |
|
"private": true, |
|
"repository": { |
|
"type": "git", |
|
"url": "git://github.com/pressbooks/pressbooks-aldine.git" |
|
}, |
|
"bugs": { |
|
"url": "https://github.com/pressbooks/pressbooks-aldine/issues" |
|
}, |
|
"licenses": [ |
|
{ |
|
"type": "GPL-3.0-or-later", |
|
"url": "https://github.com/pressbooks/pressbooks-aldine/tree/master/LICENSE.md" |
|
} |
|
], |
|
"browserslist": [ |
|
"last 2 versions", |
|
"android 4", |
|
"opera 12" |
|
], |
|
"eslintConfig": { |
|
"extends": "./node_modules/pressbooks-build-tools/config/eslint.js", |
|
"globals": { |
|
"$": true, |
|
"aldine": true, |
|
"PB_A11y": true, |
|
"tinymce": true |
|
}, |
|
"rules": { |
|
"import/no-anonymous-default-export": [ |
|
"error", |
|
{ |
|
"allowArrowFunction": true, |
|
"allowObject": true |
|
} |
|
], |
|
"jsdoc/require-param-type": "off", |
|
"jsdoc/require-returns": "off", |
|
"jsdoc/require-param-description": "off", |
|
"jsdoc/no-undefined-types": "off" |
|
} |
|
}, |
|
"eslintIgnore": [ |
|
"assets/scripts/catalog-admin.js", |
|
"assets/scripts/routes/common.js" |
|
], |
|
"stylelint": { |
|
"extends": "./node_modules/pressbooks-build-tools/config/stylelint.js" |
|
}, |
|
"scripts": { |
|
"watch": "mix watch", |
|
"build": "npm run production", |
|
"production": "mix --production", |
|
"rmdist": "rimraf dist", |
|
"test": "npm run -s lint", |
|
"lint": "npm run -s lint:scripts && npm run -s lint:styles", |
|
"lint:scripts": "eslint \"assets/scripts/**/*.js\"", |
|
"lint:styles": "stylelint \"assets/styles/**/*.scss\" --syntax scss" |
|
}, |
|
"engines": { |
|
"node": ">= 10" |
|
}, |
|
"devDependencies": { |
|
"pressbooks-build-tools": "^3.0.1" |
|
}, |
|
"dependencies": { |
|
"aetna": "^1.0.0-alpha.27", |
|
"isotope-layout": "^3.0.6", |
|
"jquery-bridget": "^3.0.0" |
|
} |
|
}
|
|
|