forked from phylp/saml20-maintained
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 849 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
{
"name": "saml20-maintained",
"version": "0.1.3",
"description": "SAML 2.0 and 1.1 token parser for Node.js",
"main": "./lib/index.js",
"dependencies": {
"lodash": "^4.17.20",
"thumbprint": "^0.0.1",
"xml-crypto": "^2.0.0",
"xml2js": "^0.4.23",
"xmldom": "^0.4.0"
},
"repository": {
"type": "git",
"url": "https://github.com/phylp/saml20-maintained.git"
},
"keywords": [
"SAML 2.0",
"SAML 1.1",
"Token Parser"
],
"scripts": {
"test": "npm run jshint && mocha -R spec test",
"jshint": "jshint lib"
},
"author": "Leandro Boffi ([email protected])",
"contributors": [
{
"name": "Phillip Son",
"email": "[email protected]"
}
],
"license": "MIT",
"readmeFilename": "README.md",
"devDependencies": {
"jshint": "2.12.0",
"mocha": "8.2.1"
}
}