forked from Gozala/crypto
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 741 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 741 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
{
"name": "crypto",
"id": "crypto",
"version": "0.0.3",
"description": "JavaScript implementations of standard and secure cryptographic algorithms.",
"keywords": [ "crypto", "md5", "sha1" ],
"author": "Irakli Gozalishvili <rfobic@gmail.com>",
"main": "sha1.js",
"repository": {
"type": "git",
"url": "git://github.com/Gozala/crypto.git",
"web": "https://github.com/Gozala/crypto"
},
"bugs": {
"url": "http://github.com/Gozala/crypto/issues/"
},
"devDependencies": {
"test": ">=0.0.10"
},
"directories": {
"lib": "./"
},
"scripts": {
"test": "node test/test-crypto.js"
},
"licenses": [{
"type" : "BSD",
"url" : "http://pajhome.org.uk/site/legal.html#bsdlicense"
}]
}