-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.55 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.55 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
{
"name": "buckram",
"version": "1.10.0",
"description": "Opinionated SCSS components for books (web, EPUB and PDF).",
"scripts": {
"build": "composer install && composer test",
"diff": "run-s build mocha",
"docs": "cross-env NODE_ENV=development node_modules/sassdoc/bin/sassdoc assets/styles --config sassdoc.json",
"lint": "pressbooks-build-tools lint:styles 'assets/styles/**/*.scss'",
"fix": "pressbooks-build-tools fix:styles 'assets/styles/**/*.scss'",
"mocha": "mocha",
"test": "run-s lint build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pressbooks/buckram.git"
},
"author": "Pressbooks (Book Oven Inc.)",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/pressbooks/buckram/issues"
},
"homepage": "https://github.com/pressbooks/buckram#readme",
"engines": {
"node": ">= 22"
},
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^10.0.0",
"npm-run-all2": "^8.0.4",
"pixelmatch": "^5.2.1",
"polyserve": "^0.27.15",
"pressbooks-build-tools": "^6.0.0",
"puppeteer": "^23.6.0",
"sassdoc": "^2.7.1",
"type-detect": "^4.0.8"
},
"stylelint": {
"extends": "pressbooks-build-tools/stylelint",
"rules": {
"no-descending-specificity": null,
"no-duplicate-at-import-rules": null,
"scss/no-global-function-names": null,
"selector-pseudo-class-no-unknown": [
true,
{
"ignorePseudoClasses": [
"first-of-group",
"first"
]
}
]
}
}
}