forked from pressbooks/pressbooks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
123 lines (123 loc) · 3.79 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"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, MOBI, web, and a variety of XML flavours, using a theming/templating system, driven by CSS.",
"scripts": {
"build": "cross-env NODE_ENV=development webpack --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "cross-env NODE_ENV=development webpack --watch --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"hot": "cross-env NODE_ENV=development webpack-dev-server --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
"build:production": "cross-env NODE_ENV=production webpack --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"lint": "npm run -s lint:scripts && npm run -s lint:styles",
"lint:scripts": "cross-env NODE_ENV=development node_modules/eslint/bin/eslint.js \"assets/src/scripts/*.js\"",
"lint:styles": "cross-env NODE_ENV=development node_modules/stylelint/bin/stylelint.js \"assets/src/styles/**/*.scss\" --syntax scss",
"localize": "wp-pot -s \"**/*.php\" -o languages/pressbooks.pot -p \"Pressbooks\" -t \"Pressbooks (Book Oven Inc.) <[email protected]>\""
},
"engines": {
"node": ">= 6.9.4"
},
"dependencies": {
"block-ui": "^2.70.1",
"countup.js": "^1.8.5",
"event-source-polyfill": "^1.0.8",
"isotope-layout": "^3.0.6",
"jquery-match-height": "^0.7.2",
"jquery-sticky": "^1.0.4",
"js-cookie": "^2.2.1",
"pagedjs": "^0.1.34",
"popper.js": "^1.15.0",
"select2": "github:woocommerce/selectWoo#1.0.5",
"sidr": "^2.2.1",
"tinymce": "^4.9.5",
"wp-admin-colors": "^5.1.0",
"wpapi": "^1.2.1"
},
"devDependencies": {
"pressbooks-build-tools": "^1.5.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
},
"plugins": [
"jquery"
],
"settings": {
"react": {
"version": "999.999.999"
}
},
"rules": {
"jquery/no-ajax": 0,
"jquery/no-ajax-events": 0,
"jquery/no-animate": 0,
"jquery/no-attr": 0,
"jquery/no-bind": 0,
"jquery/no-class": 0,
"jquery/no-clone": 0,
"jquery/no-closest": 0,
"jquery/no-css": 0,
"jquery/no-data": 0,
"jquery/no-deferred": 0,
"jquery/no-delegate": 0,
"jquery/no-each": 0,
"jquery/no-fade": 0,
"jquery/no-filter": 0,
"jquery/no-find": 0,
"jquery/no-global-eval": 0,
"jquery/no-has": 0,
"jquery/no-hide": 0,
"jquery/no-html": 0,
"jquery/no-in-array": 0,
"jquery/no-is": 0,
"jquery/no-load": 0,
"jquery/no-map": 0,
"jquery/no-merge": 0,
"jquery/no-param": 0,
"jquery/no-parent": 0,
"jquery/no-parents": 0,
"jquery/no-parse-html": 0,
"jquery/no-prop": 0,
"jquery/no-proxy": 0,
"jquery/no-ready": 0,
"jquery/no-serialize": 0,
"jquery/no-show": 0,
"jquery/no-size": 0,
"jquery/no-sizzle": 0,
"jquery/no-slide": 0,
"jquery/no-submit": 0,
"jquery/no-text": 0,
"jquery/no-toggle": 0,
"jquery/no-trigger": 0,
"jquery/no-trim": 0,
"jquery/no-val": 0,
"jquery/no-when": 0,
"jquery/no-wrap": 0
}
},
"stylelint": {
"extends": "./node_modules/pressbooks-build-tools/config/stylelint.js",
"rules": {
"no-descending-specificity": null
}
}
}