-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.53 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.53 KB
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
50
{
"name": "@zaptic-external/saml",
"version": "3.0.1",
"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 --write .",
"prettier:check": "prettier --check .",
"release": "./scripts/release",
"lint": "tslint -c tslint.json --project tsconfig.json",
"test": "ts-mocha --colors --require source-map-support/register --ui bdd 'src/spec/**/*.ts'"
},
"devDependencies": {
"@types/chai": "^4.1.4",
"@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": "^3.5.3",
"source-map-support": "^0.5.6",
"ts-mocha": "^11.1.0",
"tslint": "^5.10.0",
"typescript": "^5.8.3"
},
"dependencies": {
"@xmldom/xmldom": "^0.8.7",
"libxmljs2": "^0.37.0",
"xml-crypto": "^3.0.1",
"xml-encryption": "^3.0.2",
"xml2js": "^0.6.2",
"xpath": "^0.0.32"
}
}