-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.91 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.91 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
{
"name": "@boxyhq/saml20",
"version": "1.15.2",
"description": "SAML 2.0 token parser for Node.js",
"keywords": [
"SAML 2.0",
"Token Parser"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/ory/saml20.git"
},
"license": "MIT",
"author": "Leandro Boffi (me@leandrob.com)",
"contributors": [
{
"name": "Phillip Son",
"email": "philson3@gmail.com"
},
{
"name": "Deepak Prabhakara",
"email": "deepak@boxyhq.com"
}
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"sort": "npx sort-package-json",
"test": "nyc tsx node_modules/mocha/bin/mocha --check-leaks \"test/lib/**/*.spec.ts\"",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prepublishOnly": "npm run build",
"check-format": "prettier --check .",
"format": "prettier --write .",
"release": "git checkout release && git merge origin/main && release-it && git checkout main && git merge origin/release && git push origin main"
},
"dependencies": {
"@xmldom/xmldom": "0.9.10",
"xml-crypto": "6.1.2",
"xml-encryption": "4.0.0",
"xml2js": "0.6.2",
"xmlbuilder": "15.1.1"
},
"devDependencies": {
"@eslint/eslintrc": "3.3.5",
"@eslint/js": "10.0.1",
"@types/mocha": "10.0.10",
"@types/node": "25.6.0",
"@types/xml-encryption": "1.2.4",
"@types/xml2js": "0.4.14",
"@typescript-eslint/eslint-plugin": "8.59.0",
"@typescript-eslint/parser": "8.59.0",
"eslint": "10.2.1",
"eslint-config-prettier": "10.1.8",
"globals": "17.5.0",
"mocha": "11.7.5",
"nyc": "18.0.0",
"prettier": "3.8.3",
"release-it": "20.0.1",
"tsconfig-paths": "4.2.0",
"tsx": "4.21.0",
"typescript": "6.0.3"
},
"overrides": {
"release-it": {
"undici": ">=6.24.0"
}
},
"readmeFilename": "README.md"
}