forked from node-saml/passport-saml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.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": "4.0.4",
"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": "^4.0.4",
"@types/express": "^4.17.14",
"@types/passport": "^1.0.11",
"@types/passport-strategy": "^0.2.35",
"passport": "^0.6.0",
"passport-strategy": "^1.0.0"
},
"devDependencies": {
"@cjbarth/github-release-notes": "^4.0.0",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/chai": "^4.3.3",
"@types/mocha": "^10.0.0",
"@types/node": "^14.18.34",
"@types/sinon": "^10.0.13",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.46.1",
"chai": "^4.3.6",
"choma": "^1.2.1",
"concurrently": "^7.5.0",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"mocha": "^10.1.0",
"nyc": "^15.1.0",
"onchange": "^7.1.0",
"prettier": "^2.8.0",
"prettier-plugin-packagejson": "^2.3.0",
"release-it": "^15.5.0",
"sinon": "^14.0.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"engines": {
"node": ">= 14"
},
"publishConfig": {
"access": "public"
}
}