-
Notifications
You must be signed in to change notification settings - Fork 473
/
package.json
94 lines (94 loc) · 2.74 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
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@node-saml/passport-saml",
"version": "5.0.0",
"description": "SAML 2.0 authentication strategy for Passport",
"keywords": [
"saml",
"adfs",
"sso",
"shibboleth"
],
"repository": {
"type": "git",
"url": "https://github.com/node-saml/passport-saml.git"
},
"license": "MIT",
"author": {
"name": "Henri Bergius",
"email": "[email protected]",
"url": "http://bergie.iki.fi"
},
"contributors": [
"Michael Bosworth",
"Herbert Vojčík",
"Peter Loer",
"Mark Stosberg",
"Chris Barth",
"Andrii Kostenko"
],
"main": "./lib",
"files": [
"lib",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"changelog": "gren changelog --override --generate --head master",
"lint": "eslint --ext .ts \"**/*.ts\" --cache && npm run prettier-check",
"lint-watch": "onchange -k -p 100 \"**/*.ts\" -- eslint {{file}}",
"lint:fix": "eslint --ext .ts --fix src && npm run prettier-format",
"prepare": "tsc",
"prettier-check": "prettier --config .prettierrc.json --check .",
"prettier-format": "prettier --config .prettierrc.json --write .",
"prettier-watch": "npm run prettier-format && onchange -k -p 100 \".\" -- prettier --config .prettierrc.json --write {{file}}",
"prerelease": "git clean -xfd && npm ci && npm run lint && npm test && npm run build",
"release": "release-it",
"test": "npm run tsc && nyc mocha",
"test-watch": "mocha --watch",
"tsc": "tsc",
"tsc-watch": "tsc --watch",
"update:major": "npx npm-check-updates -i",
"update:minor": "npx npm-check-updates -i -t minor",
"watch": "concurrently --kill-others \"npm:*-watch\""
},
"dependencies": {
"@node-saml/node-saml": "^5.0.0",
"@types/express": "^4.17.21",
"@types/passport": "^1.0.16",
"@types/passport-strategy": "^0.2.38",
"passport": "^0.7.0",
"passport-strategy": "^1.0.0"
},
"devDependencies": {
"@cjbarth/github-release-notes": "^4.2.0",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/chai": "^4.3.14",
"@types/mocha": "^10.0.6",
"@types/node": "^18.19.26",
"@types/sinon": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"chai": "^4.4.1",
"choma": "^1.2.1",
"concurrently": "^8.2.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"mocha": "^10.3.0",
"nyc": "^15.1.0",
"onchange": "^7.1.0",
"prettier": "^3.2.5",
"prettier-plugin-packagejson": "^2.4.12",
"release-it": "^17.1.1",
"sinon": "^17.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.3"
},
"engines": {
"node": ">= 18"
},
"publishConfig": {
"access": "public"
}
}