-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
54 lines (54 loc) · 1.37 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
{
"name": "@socialtables/saml-protocol",
"version": "1.0.0",
"description": "A SAML protocol implementation for SPs and IDPs without opinionated framework bindings",
"author": "Social Tables (https://www.socialtables.com)",
"main": "lib/index.js",
"keywords": [
"saml",
"authentication",
"sso"
],
"repository": {
"type": "git",
"url": "git+https://github.com/socialtables/saml-protocol.git"
},
"license": "Apache-2.0",
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"test": "mocha test/",
"posttest": "eslint .",
"changeset": "changeset",
"release": "st-changeset release"
},
"dependencies": {
"@xmldom/xmldom": "^0.7.0",
"moment": "^2.17.1",
"node-forge": "1.3.0",
"xml-crypto": "^2.1.4",
"xml-encryption": "2.0.0",
"xmlbuilder": "9.0.5",
"xpath": "0.0.23",
"xpath.js": "1.0.6"
},
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@socialtables/changesets": "^1.2.2",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"eslint": "^8.22.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-node": "^11.1.0",
"mocha": "^10.0.0"
},
"bugs": {
"url": "https://github.com/socialtables/saml-protocol/issues"
},
"homepage": "https://github.com/socialtables/saml-protocol#readme",
"directories": {
"test": "test"
}
}