-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.13 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
{
"name": "@pressbooks/excalibur",
"description": "Excalibur is a SWORD protocol client for Pressbooks.",
"main": "Gruntfile.js",
"author": "Pressbooks (Book Oven Inc.) <code@pressbooks.com>",
"license": "GPL-3.0-or-later",
"homepage": "https://github.com/pressbooks/excalibur",
"scripts": {
"watch": "mix watch",
"build": "npm run production",
"production": "mix --production",
"test": "npm run lint",
"lint": "npm run -s lint:scripts && npm run -s lint:styles",
"lint:scripts": "eslint \"assets/scripts/*.js\"",
"lint:fix-scripts": "eslint \"assets/scripts/*.js\" --fix",
"lint:styles": "stylelint \"assets/styles/**/*.scss\" scss",
"lint:fix-styles": "stylelint \"assets/styles/**/*.scss\" scss --fix"
},
"engines": {
"node": ">= 18"
},
"dependencies": {
"select2": "^4.0.13"
},
"devDependencies": {
"pressbooks-build-tools": "^4.0.0"
},
"eslintConfig": {
"extends": "./node_modules/pressbooks-build-tools/config/eslint.js"
},
"stylelint": {
"extends": "./node_modules/pressbooks-build-tools/config/stylelint.js",
"rules": {
"indentation": 2
}
}
}