-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
94 lines (94 loc) · 2.6 KB
/
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
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "ipfs-mfs-crypto",
"version": "0.0.1",
"description": "JavaScript implementation of the IPFS Mutable File System supporting out of the box crypto operations",
"leadMaintainer": "Vaibhav Saini(vasa) <[email protected]>",
"main": "src/index.js",
"browser": {
"fs": false,
"joi": "joi-browser"
},
"scripts": {
"test": "aegir test",
"test:node": "aegir test -t node",
"test:browser": "aegir test -t browser",
"test:webworker": "aegir test -t webworker",
"build": "aegir build",
"lint": "aegir lint",
"release": "aegir release",
"release-minor": "aegir release --type minor",
"release-major": "aegir release --type major",
"coverage": "aegir coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cluster-labs/ipfs-mfs-crypto.git"
},
"keywords": [
"IPFS",
"cluster-labs",
"towardsblockchain",
"mfs",
"crypto",
"encryption",
"decryption"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/cluster-labs/ipfs-mfs-crypto/issues"
},
"engines": {
"node": ">=8.0.0",
"npm": ">=3.0.0"
},
"homepage": "https://github.com/cluster-labs/ipfs-mfs-crypto#readme",
"devDependencies": {
"aegir": "^18.0.2",
"chai": "^4.2.0",
"detect-node": "^2.0.4",
"detect-webworker": "^1.0.0",
"dirty-chai": "^2.0.1",
"ipld": "~0.21.1",
"ipld-in-memory": "^2.0.0",
"multihashes": "~0.4.14",
"pull-buffer-stream": "^1.0.1",
"pull-traverse": "^1.0.3",
"temp-write": "^3.4.0"
},
"dependencies": {
"async": "^2.6.1",
"cids": "~0.5.5",
"crypto": "^1.0.1",
"crypto-symmetric": "0.0.1",
"debug": "^4.1.0",
"filereader-stream": "^2.0.0",
"hamt-sharding": "~0.0.2",
"interface-datastore": "~0.6.0",
"ipfs-multipart": "~0.1.0",
"ipfs-unixfs": "~0.1.16",
"ipfs-unixfs-exporter": "~0.36.1",
"ipfs-unixfs-importer": "~0.38.5",
"ipld-dag-pb": "~0.15.2",
"is-pull-stream": "~0.0.0",
"is-stream": "^1.1.0",
"joi": "^14.3.0",
"joi-browser": "^13.4.0",
"mortice": "^1.2.1",
"once": "^1.4.0",
"promisify-es6": "^1.0.3",
"pull-cat": "^1.1.11",
"pull-defer": "~0.2.3",
"pull-stream": "^3.6.9",
"pull-stream-to-stream": "^1.3.4",
"stream-to-pull-stream": "^1.7.2"
},
"contributors": [
"Vaibhav Saini <[email protected]>",
"Alan Shaw <[email protected]>",
"Alex Potsides <[email protected]>",
"David <[email protected]>",
"David Dias <[email protected]>",
"Jacob Heun <[email protected]>",
"Vasco Santos <[email protected]>"
]
}