-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
36 lines (36 loc) · 981 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-protocol",
"version": "3.0.2",
"description": "Javascript implementation of the Noise Protocol Framework based on libsodium",
"main": "index.js",
"dependencies": {
"clone": "^2.1.2",
"hmac-blake2b": "^2.0.2",
"nanoassert": "^2.0.0",
"sodium-universal": "^4.0.0"
},
"devDependencies": {
"browserify": "^17.0.0",
"c8": "^7.12.0",
"standard": "^17.0.0",
"tape": "^5.6.1",
"tape-run": "^10.0.0"
},
"scripts": {
"pretest": "standard",
"test": "tape 'test/**/*.js'",
"posttest": "browserify test/*.js test/patterns/*.js | tape-run",
"coverage": "c8 npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/emilbayes/noise-protocol.git"
},
"keywords": [],
"author": "Emil Bay <github@tixz.dk>",
"license": "ISC",
"bugs": {
"url": "https://github.com/emilbayes/noise-protocol/issues"
},
"homepage": "https://github.com/emilbayes/noise-protocol#readme"
}