-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
118 lines (118 loc) · 3.2 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "cfsnet",
"version": "0.20.0",
"description": "The Conflict-Free File System Network is a distributed file system network for securely authoring and sharing files.",
"scripts": {
"dependency-check": "dependency-check package.json *.js errors/*.js protocol/*.js protocol/**/*.js --no-dev --unused --extra",
"pretest": "node test/helpers/clean.js",
"test": "ava -s test/*/*",
"posttest": "node test/helpers/clean.js",
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"lint-file": "eslint --quiet",
"changelog": "conventional-changelog --same-file --preset angular --release-count 0 --infile CHANGELOG.md",
"version": "npm run changelog && git add CHANGELOG.md"
},
"files": [
"errors/access-denied-error.js",
"errors/cfs-error.js",
"errors/not-found-error.js",
"errors/not-opened-error.js",
"errors/not-supported-error.js",
"protocol/error.js",
"protocol/index.js",
"protocol/messages.js",
"constants.js",
"create.js",
"crypto.js",
"destroy.js",
"drive.js",
"env.js",
"key.js",
"key-path.js",
"signalhub.js",
"tree.js",
"swarm.js",
"ws.js"
],
"author": "Joseph Werle <[email protected]>",
"license": "MIT",
"dependencies": {
"async-exit-hook": "^2.0.1",
"batch": "^0.6.1",
"cfsnet-protocol-buffers": "^0.1.11",
"collect-stream": "^1.2.1",
"connections": "^1.4.2",
"debug": "^4.3.1",
"discovery-swarm": "^6.1.0",
"extend": "^3.0.1",
"hash.js": "^1.1.3",
"hypercore-crypto": "^2.3.0",
"hyperdrive": "^9.16.0",
"ip": "^1.1.5",
"ipify": "^5.0.0",
"is-browser": "^2.0.1",
"is-buffer": "^2.0.3",
"lucas-series": "^0.1.0",
"mkdirp": "^1.0.4",
"ms": "^2.1.1",
"pify": "^5.0.0",
"pump": "^3.0.0",
"pumpcat": "^1.0.0",
"random-access-file": "^2.0.1",
"random-access-memory": "^3.1.2",
"random-access-stream": "^2.0.0",
"randombytes": "^2.0.6",
"readable-stream": "^3.6.0",
"rimraf": "^3.0.2",
"signalhub": "^4.9.0",
"simple-websocket": "^9.1.0",
"sodium-universal": "^3.0.4",
"streaming-json-stringify": "^3.1.0",
"temp-dir": "^2.0.0",
"to-buffer": "^1.1.1",
"turbo-net": "^1.4.0",
"unixify": "^1.0.0",
"ws": "^7.4.5"
},
"devDependencies": {
"ava": "^3.15.0",
"conventional-changelog-cli": "^2.0.5",
"drag-and-drop-files": "0.0.1",
"eslint": "^7.25.0",
"eslint-config-ara": "github:arablocks/eslint-config-ara",
"eslint-plugin-import": "^2.12.0",
"mediasource": "^2.1.3",
"nanohtml": "^1.2.2",
"nanomorph": "^5.1.3",
"random-access-file-reader": "^2.0.0",
"shaka-player": "^3.1.0",
"sinon": "^10.0.0",
"videostream": "^3.2.2"
},
"contributors": [
"Eric Jiang <[email protected]>",
"Vanessa Pyne <[email protected]>"
],
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arablocks/cfsnet.git"
},
"keywords": [
"cfsnet",
"cfs",
"conflict",
"free",
"file",
"system",
"hyperdrive",
"dat"
],
"bugs": {
"url": "https://github.com/arablocks/cfsnet/issues"
},
"homepage": "https://github.com/arablocks/cfsnet#readme"
}