forked from node-saml/xml-crypto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
26 lines (26 loc) · 1.04 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
{
"name": "xml-crypto",
"version": "0.1.25",
"description": "Xml digital signature and encryption library for Node.js",
"engines": { "node": ">=0.4.0" },
"author": "Yaron Naveh (yaronn01@gmail.com, http://webservices20.blogspot.com/)",
"dependencies": {
"xmldom": "git://github.com/winsome/xmldom.git#winsome/allowInvalidTagNames",
"xpath.js": ">=0.0.3"
},
"devDependencies": {
"nodeunit": ">=0.6.4"
},
"repository" : {
"type":"git",
"url":"https://github.com/yaronn/xml-crypto.git" },
"main": "./index.js",
"directories": { "lib": "./lib" },
"keywords": ["xml", "digital signature", "xml encryption", "x.509 certificate"],
"licenses": [{
"type" : "MIT License",
"url" : "http://www.opensource.org/licenses/mit-license.php" }],
"scripts": {
"test": "nodeunit ./test/canonicalization-unit-tests.js ./test/signature-unit-tests.js ./test/saml-response-test.js ./test/signature-integration-tests.js"
}
}