forked from billpatrianakos/saml2js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 961 Bytes
/
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
{
"name": "@progresskinvey/saml2js",
"version": "0.2.1",
"description": "Parse SAML2 attributes into a JavaScript object.",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/Aplo/saml2js.git"
},
"keywords": [
"SAML",
"SAML2",
"parser",
"authentication"
],
"author": "Bill Patrianakos <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Aplo/saml2js/issues"
},
"dependencies": {
"@xmldom/xmldom": "0.7.7",
"lodash": "^4.17.21",
"xpath": "^0.0.32"
},
"homepage": "https://github.com/Aplo/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"
}
}