-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.54 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
{
"name": "@zaptic-external/saml",
"version": "3.0.0",
"description": "Minimal saml service provider with support for sp-initiated redirect login only",
"main": "dist/service-provider.js",
"types": "dist/service-provider.d.ts",
"author": "Ben <ben@zaptic.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/Zaptic/saml"
},
"keywords": [
"saml"
],
"bugs": {
"url": "https://github.com/Zaptic/saml/issues"
},
"license": "MIT",
"scripts": {
"prettier": "prettier --config prettier.config.js '**' --write",
"release": "./scripts/release",
"lint": "tslint -c tslint.json --project tsconfig.json",
"test": "mocha --colors --require source-map-support/register --ui bdd $(find dist/ -name '*.js' -path '*/spec/*')"
},
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/libxmljs": "0.18.3",
"@types/mocha": "^5.2.4",
"@types/node": "^10.5.2",
"@types/xml-crypto": "^1.4.2",
"@types/xml-encryption": "^1.2.1",
"@types/xml2js": "0.4.3",
"@types/xmldom": "0.1.29",
"chai": "^4.1.2",
"mocha": "^10.2.0",
"prettier": "^1.19.1",
"source-map-support": "^0.5.6",
"tslint": "^5.10.0",
"typescript": "^3.9.10"
},
"dependencies": {
"@xmldom/xmldom": "^0.8.7",
"libxmljs": "^1.0.8",
"xml-crypto": "^3.0.1",
"xml-encryption": "^3.0.2",
"xml2js": "^0.4.23",
"xpath": "^0.0.32"
}
}