forked from pressbooks/buckram
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.41 KB
/
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "buckram",
"version": "1.8.2",
"description": "Opinionated SCSS components for books (web, EPUB and PDF).",
"scripts": {
"build": "composer install && composer test",
"diff": "npm run -s build && mocha",
"docs": "cross-env NODE_ENV=development node_modules/sassdoc/bin/sassdoc assets/styles --config sassdoc.json",
"lint": "npm run -s lint:styles",
"lint:styles": "stylelint 'assets/styles/**/*.scss'",
"test": "npm run -s lint && npm run -s 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": ">= 14"
},
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^10.0.0",
"pixelmatch": "^5.2.1",
"polyserve": "^0.27.15",
"pressbooks-build-tools": "^4.0.0",
"puppeteer": "^21.1.1",
"sassdoc": "^2.7.1",
"type-detect": "^4.0.8"
},
"eslintConfig": {
"extends": "./node_modules/pressbooks-build-tools/config/eslint.js"
},
"stylelint": {
"extends": "./node_modules/pressbooks-build-tools/config/stylelint.js",
"rules": {
"no-descending-specificity": null,
"no-duplicate-at-import-rules": null,
"scss/no-global-function-names": null
}
}
}