-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 953 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "microstar-crypto",
"version": "0.0.2",
"description": "Cryptography library for Microstar. Wraps tweetnacl, performing type conversions and simplifying public key management.",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "node test/"
},
"repository": {
"type": "git",
"url": "https://github.com/jtremback/microstar-crypto.git"
},
"keywords": [
"decentralized",
"distributed",
"public",
"key",
"symmetrical",
"private",
"key",
"nacl",
"tweetnacl",
"microstar",
"scuttlebutt"
],
"author": "jehan.tremback@gmail.com <you@example.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jtremback/microstar-crypto/issues"
},
"homepage": "https://github.com/jtremback/microstar-crypto",
"devDependencies": {
"async": "^0.9.0",
"tape": "^3.0.3"
},
"dependencies": {
"tweetnacl": "^0.12.2"
}
}