forked from node-saml/xml-crypto
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
25 lines (25 loc) · 976 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
{
"name": "xml-crypto",
"version": "0.0.9",
"description": "Xml digital signature and encryption library for Node.js",
"engines": { "node": ">=0.4.0" },
"author": "Yaron Naveh ([email protected], http://webservices20.blogspot.com/)",
"dependencies": {
"xmldom": ">=0.1.8"
},
"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"
}
}