generated from KTH/npm-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.84 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
{
"name": "@kth/kth-node-passport-oidc",
"version": "5.2.0",
"description": "OpenId Connect Express middleware, strategy and utils",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"lint": "eslint \"**/*.js\" --quiet",
"lint-v": "eslint \"**/*.js\"",
"test": "jest",
"test:watch": "jest --watch",
"test:notify": "jest --watch --notify",
"build": "npm ci",
"buildApiDocs": " ./node_modules/jsdoc-to-markdown/bin/cli.js ./lib/oidc.js > api.md",
"prepare": "bash -c 'if [ -f ./node_modules/.bin/husky ]; then husky install; fi'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KTH/kth-node-passport-oidc.git"
},
"keywords": [
"npm",
"kth"
],
"author": {
"name": "KTH",
"email": "[email protected]",
"url": "https://github.com/KTH"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/KTH/kth-node-passport-oidc/issues"
},
"homepage": "https://github.com/KTH/kth-node-passport-oidc#readme",
"devDependencies": {
"@kth/eslint-config-kth": "^3.0.10",
"dotenv": "^16.0.2",
"eslint": "^8.23.1",
"express": "^4.18.1",
"express-session": "^1.17.3",
"husky": "^8.0.1",
"jest": "^29.0.3",
"jest-extended": "^4.0.2",
"jsdoc-to-markdown": "^7.1.1",
"passport": "^0.7.0",
"prettier": "^3.3.3",
"pretty-quick": "^4.0.0"
},
"dependencies": {
"@kth/log": "^4.0.5",
"openid-client": "^4.9.1"
},
"prettier": {
"arrowParens": "avoid",
"printWidth": 120,
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
},
"// (jest)": "configuration version 2021-06-15 (WEB) - might also reside as module.exports in jest.config.js",
"jest": {
"clearMocks": true,
"notifyMode": "failure-change",
"setupFilesAfterEnv": [
"jest-extended"
],
"verbose": true
}
}