forked from socialtables/saml-protocol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.22 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
{
"name": "@socialtables/saml-protocol",
"version": "0.3.6",
"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": ">=4.0.0"
},
"scripts": {
"test": "mocha test/",
"posttest": "eslint ."
},
"dependencies": {
"moment": "^2.17.1",
"node-forge": "0.6.39",
"xml-crypto": "0.8.4",
"xml-encryption": "0.9.0",
"xmlbuilder": "8.2.2",
"xmldom": "0.1.21",
"xpath": "0.0.23",
"xpath.js": "1.0.6"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"eslint": "^3.2.2",
"eslint-plugin-json": "^1.2.0",
"eslint-plugin-mocha": "^4.5.1",
"eslint-plugin-node": "^2.0.0",
"mocha": "^2.2.5"
},
"bugs": {
"url": "https://github.com/socialtables/saml-protocol/issues"
},
"homepage": "https://github.com/socialtables/saml-protocol#readme",
"directories": {
"test": "test"
}
}