-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
82 lines (82 loc) · 1.95 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
{
"name": "cds-azure-ad",
"version": "0.0.21",
"description": "Azure AD and Azure AD B2C Custom-Defined Authentication for SAP CDS (CAP)",
"main": "index.js",
"scripts": {
"test": "run-s jest",
"jest": "jest --runInBand --silent",
"lint": "prettier -c . && eslint '*.{js,ts,tsx}'",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sapmentors/cds-azure-ad.git"
},
"keywords": [
"sap",
"cap",
"cds",
"azure",
"azure ad",
"azure ad b2c"
],
"author": "SAP Mentors & Friends",
"license": "MIT",
"bugs": {
"url": "https://github.com/sapmentors/cds-azure-ad/issues"
},
"homepage": "https://github.com/sapmentors/cds-azure-ad#readme",
"dependencies": {
"@sap/cds": "~5.7.4",
"@sap/xsenv": "^3.1.1",
"@sap/xssec": "^3.2.11",
"passport": "^0.5.2",
"passport-azure-ad": "latest"
},
"devDependencies": {
"@commitlint/cli": "^16.0.2",
"@commitlint/config-conventional": "^16.0.0",
"@types/jest": "^27.4.0",
"copyfiles": "^2.4.1",
"dotenv": "^10.0.0",
"eslint": "^8.6.0",
"eslint-plugin-jest": "^25.3.4",
"express": "^4.17.2",
"husky": "^7.0.4",
"jest": "^27.4.7",
"lint-staged": "^12.1.7",
"npm-run-all": "^4.1.5",
"prettier": "2.5.1",
"standard-version": "^9.3.2",
"supertest": "^6.1.6",
"uuidv4": "^6.2.12"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.(js|json)": [
"prettier --write"
],
"*.js": "eslint --cache --fix"
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/"
],
"testRegex": "/__tests__/.*(\\.|/)(test|spec)\\.[jt]sx?$",
"testTimeout": 10000
},
"prettier": {
"semi": false,
"printWidth": 120,
"arrowParens": "always",
"trailingComma": "es5",
"singleQuote": true
}
}