-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 727 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 727 Bytes
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
{
"name": "saml20",
"version": "0.1.14",
"description": "SAML 2.0 and 1.1 token parser for Node.js",
"main": "./lib/index.js",
"dependencies": {
"lodash": "3.10.1",
"thumbprint": "0.0.1",
"xml-crypto": "0.8.1",
"xml2js": "0.4.4",
"xmldom": "0.1.19"
},
"repository": {
"type": "git",
"url": "https://github.com/leandrob/saml20.git"
},
"keywords": [
"SAML 2.0",
"SAML 1.1",
"Token Parser"
],
"scripts": {
"test": "npm run jshint && mocha -R spec test",
"jshint": "jshint lib/*.js"
},
"author": "Leandro Boffi (me@leandrob.com)",
"license": "MIT",
"readmeFilename": "README.md",
"devDependencies": {
"jshint": "2.8.0",
"mocha": "2.3.3"
}
}