-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.29 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
{
"name": "@pressbooks/pressbooks-saml-sso",
"description": "SAML2 Single Sign-On integration for Pressbooks (Shibboleth, Microsoft ADFS, Google Apps, etc.).",
"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: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": {},
"devDependencies": {
"pressbooks-build-tools": "^4.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pressbooks/pressbooks-saml-sso.git"
},
"author": "Book Oven Inc. <code@pressbooks.com>",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/pressbooks/pressbooks-saml-sso/issues"
},
"homepage": "https://github.com/pressbooks/pressbooks-saml-sso/",
"eslintConfig": {
"extends": "./node_modules/pressbooks-build-tools/config/eslint.js"
},
"stylelint": {
"extends": "./node_modules/pressbooks-build-tools/config/stylelint.js"
}
}