forked from billpatrianakos/saml2js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1 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
{
"name": "@deliverysolutions/saml2js",
"version": "1.0.1",
"description": "Parse SAML2 attributes into a JavaScript object.",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/ds-arb/saml2js"
},
"keywords": [
"SAML",
"SAML2",
"parser",
"authentication"
],
"author": "Delivery Solutions",
"license": "MIT",
"bugs": {
"url": "https://github.com/ds-arb/saml2js/issues"
},
"dependencies": {
"lodash": "^4.17.11",
"xmldom": "^0.4.0",
"xpath": "^0.0.32"
},
"homepage": "https://github.com/ds-arb/saml2js",
"devDependencies": {
"chai": "^4.2.0",
"grunt": "^1.3.0",
"grunt-contrib-jshint": "^3.0.0",
"grunt-contrib-watch": "^1.1.0",
"jshint-stylish": "^2.0.1",
"load-grunt-tasks": "^5.1.0",
"mocha": "^8.2.1",
"time-grunt": "^2.0.0"
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha"
},
"publishConfig": {
"access": "public"
},
"np": {
"yarn": false,
"2fa": false
}
}