-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "libgenaro",
"version": "4.0.3",
"description": "Node.js library for encrypted file transfer on the Genaro network.",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/mocha test/**.test.js --recursive",
"preinstall": "node ./download.js",
"install": "node-gyp rebuild"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GenaroNetwork/node-libgenaro.git"
},
"keywords": [
"genaro",
"encryption",
"storage"
],
"author": "Storj Labs, Inc. Geanro Network.",
"contributors": [
{
"name": "Braydon Fuller",
"url": "https://github.com/braydonf"
},
{
"name": "Bryan White",
"url": "https://github.com/bryanchriswhite"
},
{
"name": "Moby von Briesen",
"url": "https://github.com/mobyvb"
}
],
"license": "LGPL-3.0",
"bugs": {
"url": "https://github.com/GenaroNetwork/node-libgenaro/issues"
},
"homepage": "https://github.com/GenaroNetwork/node-libgenaro#readme",
"dependencies": {
"bindings": "^1.2.1",
"cryptico": "^1.0.2",
"iconv-lite": "^0.4.24",
"nan": "^2.11.1"
},
"devDependencies": {
"basic-auth": "^2.0.0",
"body-parser": "^1.17.2",
"chai": "^4.0.2",
"express": "^4.15.3",
"mocha": "^3.4.2"
},
"libgenaro": {
"basePath": "./libgenaro",
"baseUrl": "https://github.com/GenaroNetwork/libgenaro/releases/download/4.0.3",
"releases": [
{
"arch": "x64",
"platform": "linux",
"filename": "linux_x64.tar.gz",
"checksum": "92225c0e840e4d6629ca5a240b88c827aa96cac3d6f87780c7f986ef38100085"
},
{
"arch": "x64",
"platform": "darwin",
"filename": "darwin.tar.gz",
"checksum": "545daf7358a1d08b8fa7ef7dd888cb9edced55f2ff4d1306222aa976a2e18c22"
},
{
"arch": "x64",
"platform": "win32",
"filename": "win_x64.zip",
"checksum": "4c5f0aa4c140d850469eb6a5188a5a640ffa81d9d44902f7a2c7fb9a5048b04d"
}
]
}
}