-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 811 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 811 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": "psha1",
"version": "0.1.1",
"description": "P_SHA1 algorithm implemetation as defined in TLS Spec (rfc5246, 5.HMAC and the Pseudorandom Function)",
"main": "./lib/index.js",
"files": [
"lib/"
],
"repository": {
"type": "git",
"url": "https://github.com/leandrob/node-psha1.git"
},
"keywords": [
"WS-Trust",
"PSHA1",
"P_SHA1",
"Computed Keys",
"Proof",
"Symmetric Keys",
"http://schemas.xmlsoap.org/ws/2005/02/trust/CK/PSHA1",
"http://docs.oasis-open.org/ws-sx/ws-trust/200512/CK/PSHA1",
"http://tools.ietf.org/html/rfc5246"
],
"scripts": {
"test": "mocha -R spec test"
},
"author": "Leandro Boffi (me@leandrob.com)",
"license": "MIT",
"readmeFilename": "README.md",
"devDependencies": {
"mocha": "^1.21.0"
}
}