forked from pressbooks/pressbooks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.49 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
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
82
83
84
85
86
87
{
"name": "@pressbooks/pressbooks",
"description": "Pressbooks is an open source book publishing tool built on a WordPress multisite platform. Pressbooks outputs books in multiple formats, including PDF, EPUB, web, and a variety of XML flavours, using a theming/templating system, driven by CSS.",
"scripts": {
"watch": "mix watch",
"build": "mix --production",
"test": "npm run lint",
"lint": "npm run -s lint:scripts && npm run -s lint:styles",
"lint:scripts": "eslint \"assets/src/scripts/*.js\"",
"lint:fix-scripts": "eslint \"assets/src/scripts/*.js\" --fix",
"lint:styles": "stylelint \"assets/src/styles/**/*.scss\" scss",
"lint:fix-styles": "stylelint \"assets/src/styles/**/*.scss\" scss --fix"
},
"engines": {
"node": ">= 18"
},
"dependencies": {
"@duetds/date-picker": "^1.4.0",
"@pressbooks/multiselect": "^2.4.0",
"@pressbooks/reorderable-multiselect": "^0.0.3",
"algoliasearch": "^4.23.2",
"alpine": "^0.2.1",
"alpinejs": "^3.13.9",
"block-ui": "^2.70.1",
"countup.js": "^2.8.0",
"event-source-polyfill": "^1.0.31",
"instantsearch.js": "^4.66.0",
"isotope-layout": "^3.0.6",
"jquery-match-height": "^0.7.2",
"jquery-sticky": "^1.0.4",
"js-cookie": "^3.0.5",
"pagedjs": "^0.4.3",
"select2": "github:woocommerce/selectWoo#1.0.8",
"sidr": "^2.2.1",
"tinymce": "^4.9.11",
"wp-admin-colors": "^6.0.0"
},
"devDependencies": {
"pressbooks-build-tools": "^4.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pressbooks/pressbooks.git"
},
"keywords": [
"ebooks",
"publishing",
"webbooks"
],
"author": "Book Oven Inc. <[email protected]>",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/pressbooks/pressbooks/issues"
},
"homepage": "https://github.com/pressbooks/pressbooks/",
"eslintConfig": {
"extends": "./node_modules/pressbooks-build-tools/config/eslint.js",
"globals": {
"ajaxurl": true,
"edButton": true,
"edButtons": true,
"pb_sr": true,
"Popper": true,
"tinymce": true
},
"rules": {
"jsdoc/require-param-type": "off",
"jsdoc/require-returns": "off",
"jsdoc/require-param-description": "off",
"jsdoc/no-undefined-types": "off",
"jsdoc/require-returns-description": "off",
"no-unused-vars": "off"
},
"settings": {
"react": {
"version": "999.999.999"
}
}
},
"stylelint": {
"extends": "./node_modules/pressbooks-build-tools/config/stylelint.js",
"rules": {
"no-descending-specificity": null,
"scss/no-global-function-names": null
}
}
}