-
Notifications
You must be signed in to change notification settings - Fork 89
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 886 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 886 Bytes
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
{
"name": "saml",
"version": "3.0.0",
"engines": {
"node": ">=12"
},
"devDependencies": {
"@commitlint/cli": "^20.3.1",
"@commitlint/config-conventional": "^20.3.1",
"@semantic-release/exec": "^7.0.3",
"chai": "^4.2.0",
"husky": "^9.1.7",
"mocha": "^8.2.0",
"semantic-release": "^25.0.2",
"should": "~1.2.1"
},
"files": [
"lib"
],
"main": "./lib",
"repository": "https://github.com/auth0/node-saml",
"keywords": [
"saml",
"authentication"
],
"author": "Matias Woloski (Auth0)",
"license": "MIT",
"dependencies": {
"@xmldom/xmldom": "^0.7.4",
"async": "^3.2.4",
"moment": "^2.29.4",
"valid-url": "~1.0.9",
"xml-crypto": "^2.1.3",
"xml-encryption": "^2.0.0",
"xml-name-validator": "~2.0.1",
"xpath": "0.0.5"
},
"scripts": {
"prepare": "husky",
"test": "mocha"
}
}