-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 981 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 981 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
31
32
33
34
{
"name": "simple-hypercore-protocol",
"version": "2.1.2",
"description": "Hypercore protocol state machine",
"main": "index.js",
"dependencies": {
"hypercore-crypto": "^2.1.0",
"noise-protocol": "^3.0.1",
"protocol-buffers-encodings": "^1.1.0",
"simple-handshake": "^3.0.0",
"simple-message-channels": "^1.2.1",
"varint": "^5.0.0",
"xsalsa20-universal": "^1.0.0"
},
"devDependencies": {
"protocol-buffers": "^4.1.0",
"standard": "^14.1.0",
"tape": "^4.11.0"
},
"scripts": {
"test": "standard && tape test.js",
"protobuf": "protocol-buffers schema.proto -o messages.js"
},
"repository": {
"type": "git",
"url": "https://github.com/mafintosh/simple-hypercore-protocol.git"
},
"author": "Mathias Buus (@mafintosh)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mafintosh/simple-hypercore-protocol/issues"
},
"homepage": "https://github.com/mafintosh/simple-hypercore-protocol"
}