-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.28 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.28 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"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,
"type": "module",
"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/production/LICENSE.md"
}
],
"eslintConfig": {
"extends": "./node_modules/pressbooks-build-tools/config/eslint.cjs",
"globals": {
"aldine": true,
"PB_A11y": true,
"tinymce": true,
"PB_Ajax": true,
"PB_Aldine_Admin": 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",
"rules": {
"scss/at-extend-no-missing-placeholder": null
}
},
"scripts": {
"build": "pressbooks-build-tools build",
"watch": "pressbooks-build-tools dev",
"lint:scripts": "pressbooks-build-tools lint:scripts 'assets/scripts/**/*.js'",
"lint:styles": "pressbooks-build-tools lint:styles 'assets/styles/**/*.scss'",
"fix:scripts": "pressbooks-build-tools fix:scripts 'assets/scripts/**/*.js'",
"fix:styles": "pressbooks-build-tools fix:styles 'assets/styles/**/*.scss'",
"lint": "npm run lint:scripts && npm run lint:styles"
},
"engines": {
"node": ">= 22"
},
"devDependencies": {
"pressbooks-build-tools": "^6.0.0",
"vite-plugin-static-copy": "^2.2.0"
},
"dependencies": {
"aetna": "^1.1.0",
"isotope-layout": "^3.0.6",
"jquery-bridget": "^3.0.1"
}
}