-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
97 lines (97 loc) · 2.23 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
95
96
97
{
"name": "saml-login",
"version": "0.0.0",
"description": "SAML 2.0 implementation for Node.js",
"keywords": [
"saml",
"adfs",
"sso",
"saml login",
"login",
"passport",
"node-saml",
"saml2",
"saml2.0",
"saml-login",
"saml-authentication",
"saml-sp",
"saml-idp",
"openid",
"authentication",
"service provider",
"identity provider",
"SP initiated",
"IdP initiated",
"Assertions"
],
"repository": {
"type": "git",
"url": "https://github.com/authress/saml-login.js.git"
},
"license": "Apache-2.0",
"author": {
"name": "Authress Developers",
"email": "[email protected]",
"url": "https://authress.io"
},
"contributors": [
"Authress Developers"
],
"main": "./lib",
"files": [
"lib",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"lint": "eslint --ext .ts \"**/*.ts\" --cache",
"test": "npm run lint && tsc -p tsconfig-test.json & mocha"
},
"dependencies": {
"@xmldom/xmldom": "^0.7",
"xml-crypto": "^2.1",
"xml-encryption": "^1.3",
"xml2js": "^0.4",
"xmlbuilder": "^15.1"
},
"devDependencies": {
"@types/chai": "^4.3.11",
"@types/mocha": "^8.2.2",
"@types/node": "^14.14.44",
"@types/qs": "^6.9.6",
"@types/request": "^2.48.5",
"@types/sinon": "^10.0.0",
"@types/xml-crypto": "^1.4.1",
"@types/xml-encryption": "^1.2.0",
"@types/xml2js": "^0.4.8",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"body-parser": "^1.19.0",
"chai": "^4.3.10",
"choma": "^1.2.1",
"ci-build-tools": "^1.0.13",
"commander": "^8.1.0",
"concurrently": "^6.1.0",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"express": "^4.17.1",
"fs-extra": "^10.0.0",
"github-release-notes": "^0.17.3",
"mocha": "^8.4.0",
"nodemon": "^2.0.19",
"onchange": "^7.1.0",
"prettier": "^2.3.0",
"prettier-plugin-packagejson": "^2.2.11",
"release-it": "^14.6.2",
"request": "^2.83.0",
"should": "^13.2.3",
"sinon": "^10.0.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"engines": {
"node": ">= 16"
}
}