-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
65 lines (65 loc) · 1.74 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
60
61
62
63
64
65
{
"name": "@boxyhq/saml20",
"version": "1.6.0",
"description": "SAML 2.0 token parser for Node.js",
"keywords": [
"SAML 2.0",
"Token Parser"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/boxyhq/saml20.git"
},
"license": "MIT",
"author": "Leandro Boffi ([email protected])",
"contributors": [
{
"name": "Phillip Son",
"email": "[email protected]"
},
{
"name": "Deepak Prabhakara",
"email": "[email protected]"
}
],
"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.5",
"xml-crypto": "6.0.0",
"xml-encryption": "3.0.2",
"xml2js": "0.6.2",
"xmlbuilder": "15.1.1"
},
"devDependencies": {
"@types/mocha": "10.0.9",
"@types/node": "22.9.0",
"@types/xml2js": "0.4.14",
"@typescript-eslint/eslint-plugin": "8.14.0",
"@typescript-eslint/parser": "8.14.0",
"eslint": "9.14.0",
"eslint-config-prettier": "9.1.0",
"mocha": "10.8.2",
"nyc": "17.1.0",
"prettier": "3.3.3",
"release-it": "17.10.0",
"ts-node": "10.9.2",
"tsconfig-paths": "4.2.0",
"typescript": "5.6.3"
},
"readmeFilename": "README.md"
}