forked from tngan/samlify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.53 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
50
51
52
53
54
55
56
57
58
59
{
"name": "samlify",
"version": "2.5.0-rc4",
"description": "High-level API for Single Sign On (SAML 2.0)",
"main": "build/index.js",
"keywords": [
"nodejs",
"saml2",
"sso",
"slo",
"metadata"
],
"typings": "types/index.d.ts",
"scripts": {
"build": "make rebuild",
"docs": "docsify serve -o docs",
"lint": "tslint -p .",
"lint:fix": "tslint -p . --fix",
"pretest": "make pretest",
"test": "npm run build && NODE_ENV=test nyc ava --verbose build/test",
"test:pure": "NODE_ENV=test nyc ava --verbose build/test",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"preinstall": "make validator",
"hooks:postinstall": "ln -sf $PWD/.pre-commit.sh $PWD/.git/hooks/pre-commit"
},
"contributors": [
"Tony Ngan <tonynwk919@gmail.com>"
],
"author": "tngan",
"repository": {
"url": "https://github.com/tngan/samlify",
"type": "git"
},
"license": "MIT",
"dependencies": {
"@authenio/xml-encryption": "^0.11.2",
"camelcase": "^5.2.0",
"deflate-js": "^0.2.3",
"node-forge": "^0.7.5",
"node-rsa": "^0.4.2",
"uuid": "^3.3.2",
"xml": "^1.0.0",
"xml-crypto": "^1.1.4",
"xmldom": "^0.1.19",
"xpath": "^0.0.27"
},
"devDependencies": {
"@types/camelcase": "^5.2.0",
"@types/node": "^11.11.3",
"@types/node-forge": "^0.7.4",
"@types/uuid": "3.0.0",
"@types/xmldom": "^0.1.28",
"ava": "^1.2.1",
"coveralls": "^3.0.2",
"nyc": "^11.9.0",
"tslint": "^5.12.1",
"typescript": "^3.3.3333"
}
}