-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 954 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
44
{
"name": "saml-metadata",
"version": "1.4.0",
"description": "Streaming SAML 2.0 metadata parser",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"files": [
"build/src",
"README.md",
"LICENSE"
],
"type": "module",
"scripts": {
"build": "tsc",
"test": "node --test build/test/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UM-LPM/saml-metadata.git"
},
"keywords": [
"saml",
"federation",
"metadata",
"entitiesdescriptor"
],
"author": {
"name": "Žiga Leber",
"email": "[email protected]"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/UM-LPM/saml-metadata/issues"
},
"homepage": "https://github.com/UM-LPM/saml-metadata#readme",
"dependencies": {
"@types/node": "^20.10.4",
"saxes": "^6.0.0"
},
"devDependencies": {
"class-transformer": "^0.5.1",
"typescript": "^5.3.3"
}
}