-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.44 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.44 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
{
"name": "@pressbooks/pressbooks-multi-institution",
"description": "Tools for managing Pressbooks networks shared by multiple institutions",
"type": "module",
"scripts": {
"build": "pressbooks-build-tools build",
"watch": "pressbooks-build-tools dev",
"lint:scripts": "pressbooks-build-tools lint:scripts 'resources/assets/js/**/*.js'",
"lint:styles": "pressbooks-build-tools lint:styles 'resources/assets/styles/**/*.css'",
"fix:scripts": "pressbooks-build-tools fix:scripts 'resources/assets/js/**/*.js'",
"fix:styles": "pressbooks-build-tools fix:styles 'resources/assets/styles/**/*.css'",
"lint": "npm run lint:scripts && npm run lint:styles"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/pressbooks/pressbooks-multi-institution.git"
},
"keywords": [
"wordpress-plugin"
],
"author": "Pressbooks (Book Oven Inc.)",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/pressbooks/pressbooks--multi-institution/issues"
},
"homepage": "https://github.com/pressbooks/pressbooks--multi-institution#readme",
"devDependencies": {
"pressbooks-build-tools": "^6.0.0",
"postcss-nesting": "^12.1.4"
},
"dependencies": {
"@pressbooks/select": "1.0.2"
},
"eslintConfig": {
"extends": "./node_modules/pressbooks-build-tools/config/eslint.cjs"
},
"stylelint": {
"extends": "./node_modules/pressbooks-build-tools/config/stylelint.js"
}
}