-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
35 lines (35 loc) · 860 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
{
"name": "saml2json",
"description": "Extracts a base64 encoded SAML 2.0 assertion's attributes into a JSON object.",
"version": "1.0.0",
"author": "John Flesch <[email protected]>",
"bugs": {
"url": "https://github.com/flesch/saml2json/issues"
},
"dependencies": {
"xmldom": "0.1.27",
"xpath": "0.0.23"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-preset-es2015": "^6.18.0"
},
"keywords": [
"JSON",
"SAML",
"assertion",
"authentication",
"parse"
],
"license": "MIT",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/flesch/saml2json.git"
},
"scripts": {
"build": "babel index.js --presets babel-preset-es2015 --out-file lib/index.js",
"preversion": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
}
}