-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (41 loc) · 1.25 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
{
"name": "@pressbooks/pressbooks-cas-sso",
"description": "CAS Single Sign-On integration for Pressbooks.",
"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/src/scripts/*.js\"",
"lint:styles": "stylelint \"assets/src/styles/**/*.scss\" scss",
"lint:fix-scripts": "eslint \"assets/src/scripts/*.js\" --fix",
"lint:fix-styles": "stylelint \"assets/src/styles/**/*.scss\" scss --fix"
},
"engines": {
"node": ">= 18"
},
"dependencies": {},
"devDependencies": {
"pressbooks-build-tools": "^4.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pressbooks/pressbooks-cas-sso.git"
},
"author": "Book Oven Inc. <[email protected]>",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/pressbooks/pressbooks-cas-sso/issues"
},
"homepage": "https://github.com/pressbooks/pressbooks-cas-sso/",
"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
}
}
}