This repository has been archived by the owner on Jun 5, 2024. It is now read-only.
forked from node-saml/node-saml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 2.94 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@articulate/node-saml",
"version": "5.0.0",
"description": "SAML 2.0 implementation for Node.js",
"keywords": [
"saml",
"adfs",
"sso",
"shibboleth"
],
"repository": {
"type": "git",
"url": "https://github.com/articulate/node-saml.git"
},
"license": "MIT",
"author": {
"name": "Henri Bergius",
"email": "[email protected]",
"url": "http://bergie.iki.fi"
},
"contributors": [
"Michael Bosworth",
"Herbert Vojčík",
"Peter Loer",
"Mark Stosberg",
"Chris Barth",
"Andrii Kostenko",
"Andreas Zoellner"
],
"main": "./lib",
"files": [
"lib",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"changelog": "gren changelog --override --generate --head master",
"lint": "eslint --ext .ts \"**/*.ts\" --cache && npm run prettier-check",
"lint-watch": "onchange -k -p 100 \"**/*.ts\" -- eslint {{file}}",
"lint:fix": "eslint --ext .ts --fix src && npm run prettier-format",
"prepare": "tsc",
"prettier-check": "prettier --config .prettierrc.json --check .",
"prettier-format": "prettier --config .prettierrc.json --write .",
"prettier-watch": "npm run prettier-format && onchange -k -p 100 \".\" -- prettier --config .prettierrc.json --write {{file}}",
"prerelease": "git clean -xfd && npm ci && npm run lint && npm test && npm run build",
"release": "release-it",
"test": "npm run tsc && nyc mocha",
"test-watch": "mocha --watch",
"tsc": "tsc",
"tsc-watch": "tsc --watch",
"update:major": "npx npm-check-updates -i",
"update:minor": "npx npm-check-updates -i -t minor",
"watch": "concurrently --kill-others \"npm:*-watch\""
},
"dependencies": {
"@types/debug": "^4.1.8",
"@types/qs": "^6.9.7",
"@types/xml-crypto": "^1.4.2",
"@types/xml-encryption": "^1.2.1",
"@types/xml2js": "^0.4.11",
"@xmldom/xmldom": "^0.8.10",
"debug": "^4.3.4",
"xml-crypto": "^3.1.0",
"xml-encryption": "^3.0.2",
"xml2js": "^0.6.0",
"xmlbuilder": "^15.1.1"
},
"devDependencies": {
"@cjbarth/github-release-notes": "^4.1.0",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@types/node": "^14.18.53",
"@types/sinon": "^10.0.15",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"body-parser": "^1.20.2",
"chai": "^4.3.7",
"choma": "^1.2.1",
"concurrently": "^8.2.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-deprecation": "^1.4.1",
"eslint-plugin-prettier": "^4.2.1",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"onchange": "^7.1.0",
"prettier": "^3.0.0",
"prettier-plugin-packagejson": "^2.4.5",
"release-it": "^16.1.3",
"sinon": "^15.2.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"engines": {
"node": ">= 14"
},
"publishConfig": {
"access": "public"
}
}