-
-
Notifications
You must be signed in to change notification settings - Fork 238
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.86 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.86 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
{
"name": "samlify",
"version": "2.12.0",
"description": "Node.js library for SAML SSO",
"main": "build/index.js",
"keywords": [
"nodejs",
"saml2",
"sso",
"slo",
"metadata"
],
"typings": "types/index.d.ts",
"files": [
"build",
"types",
"LICENSE",
"README.md"
],
"scripts": {
"clean": "rm -rf build types",
"build": "yarn audit && rm -rf build && tsc",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"lint": "tslint -p .",
"lint:fix": "tslint -p . --fix",
"pretest": "mkdir -p build/test && cp -a test/key test/misc build/test",
"test": "NODE_ENV=test vitest run",
"test:watch": "NODE_ENV=test vitest",
"coverage": "vitest run --coverage",
"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": "^2.0.2",
"@xmldom/xmldom": "^0.8.11",
"node-rsa": "^1.1.1",
"xml": "^1.0.1",
"xml-crypto": "^6.1.2",
"xml-escape": "^1.1.0",
"xpath": "^0.0.34"
},
"resolutions": {
"diff": ">=4.0.4",
"esbuild": ">=0.25.0",
"vitest/vite": "^6.4.2",
"vitest/vite-node/vite": "^6.4.2",
"vitepress/vite": "^6.4.2",
"vitepress/@vitejs/plugin-vue/vite": "^6.4.2"
},
"devDependencies": {
"@authenio/samlify-xsd-schema-validator": "^1.0.5",
"@types/node": "^25.4.0",
"@types/node-rsa": "^1.1.4",
"@types/xmldom": "^0.1.34",
"@vitest/coverage-v8": "^3.2.0",
"timekeeper": "^2.3.1",
"ts-node": "^10.9.2",
"tslint": "^6.1.3",
"typescript": "^5.9.3",
"vitepress": "^1.6.4",
"vitest": "^3.2.4"
}
}