-
Notifications
You must be signed in to change notification settings - Fork 91
/
package.json
43 lines (43 loc) · 920 Bytes
/
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
{
"name": "saml",
"version": "3.0.0",
"engines": {
"node": ">=12"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"chai": "^4.2.0",
"husky": "^4.3.0",
"mocha": "^8.2.0",
"should": "~1.2.1",
"standard-version": "^9.0.0"
},
"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": {
"release": "standard-version",
"test": "mocha"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}