-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
36 lines (36 loc) · 959 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
{
"name": "noise-peer",
"version": "2.1.1",
"description": "Simple end-to-end encrypted, secure channels using Noise Protocol Framework and libsodium secretstream",
"main": "index.js",
"dependencies": {
"readable-stream": "^3.0.6",
"secretstream-stream": "^2.0.0",
"simple-handshake": "^3.0.0",
"sodium-native": "^3.1.1"
},
"devDependencies": {
"c8": "^7.1.2",
"choppa": "^1.0.2",
"duplexify": "^4.1.1",
"pumpify": "^2.0.1",
"standard": "^14.3.4",
"tape": "^5.0.0",
"utp-native": "^2.1.10"
},
"scripts": {
"test": "tape tests/**.js",
"coverage": "c8 npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/emilbayes/noise-peer.git"
},
"keywords": [],
"author": "Emil Bay <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/emilbayes/noise-peer/issues"
},
"homepage": "https://github.com/emilbayes/noise-peer#readme"
}