-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.82 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.82 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
{
"name": "@boxyhq/saml20",
"version": "1.13.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 mocha --check-leaks -r tsconfig-paths/register -r ts-node/register 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.8",
"xml-crypto": "6.1.2",
"xml-encryption": "3.1.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.5.0",
"@types/xml2js": "0.4.14",
"@typescript-eslint/eslint-plugin": "8.57.1",
"@typescript-eslint/parser": "8.57.1",
"eslint": "10.0.3",
"eslint-config-prettier": "10.1.8",
"globals": "17.4.0",
"mocha": "11.7.5",
"nyc": "18.0.0",
"prettier": "3.8.1",
"release-it": "19.2.4",
"ts-node": "10.9.2",
"tsconfig-paths": "4.2.0",
"typescript": "5.9.3"
},
"readmeFilename": "README.md"
}