forked from tngan/samlify
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.9 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.9 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "samlify",
"version": "2.7.6",
"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": "npm run clean && npm audit && tsc",
"clean": "del-cli ./build --force",
"docs": "docsify serve -o docs",
"lint": "tslint -p .",
"lint:fix": "tslint -p . --fix",
"pretest": "mkdirp build/test && copyfiles test/key build/test && copyfiles test/misc build/test",
"test": "cross-env NODE_ENV=test nyc ava",
"test:watch": "cross-env NODE_ENV=test nyc ava --watch",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"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": "^1.2.2",
"camelcase": "^5.3.1",
"node-forge": "^0.10.0",
"node-rsa": "^1.0.5",
"pako": "^1.0.10",
"uuid": "^3.3.2",
"xml": "^1.0.1",
"xml-crypto": "^2.0.0",
"xmldom": "^0.1.27",
"xpath": "^0.0.27"
},
"devDependencies": {
"@ava/typescript": "^1.1.1",
"@types/node": "^11.11.3",
"@types/node-forge": "^0.9.5",
"@types/pako": "^1.0.1",
"@types/uuid": "3.0.0",
"@types/xmldom": "^0.1.28",
"ava": "^3.8.2",
"coveralls": "^3.1.0",
"nyc": "^15.0.1",
"timekeeper": "^2.2.0",
"ts-node": "^8.3.0",
"tslint": "^6.1.2",
"typescript": "^3.8.3",
"del-cli": "^3.0.1",
"mkdirp": "^1.0.4",
"copyfiles": "^2.4.0",
"cross-env": "^7.0.2"
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
],
"files": [
"!**/*.d.ts"
]
}
}