-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.51 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
{
"name": "triple-double",
"version": "0.0.3",
"description": "Create end-to-end encrypted WebSocket channels with Extended Triple Diffie-Hellman and Double Ratchet",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/zbo14/triple-double"
},
"scripts": {
"cert": "sh scripts/gencert.sh",
"doc": "jsdoc README.md lib/**",
"example": "node example.js",
"lint": "eslint lib test",
"start": "node index.js",
"test": "NODE_ENV=test nyc mocha --recursive --exit"
},
"keywords": [
"axolotl",
"axolotl protocol",
"diffie-hellman",
"double-ratchet",
"encryption",
"end-to-end encryption",
"e2ee",
"https",
"https server",
"signal",
"signal protocol",
"extended triple diffie-hellman",
"x3dh",
"websockets"
],
"author": "Zachary Balder",
"license": "MIT",
"dependencies": {
"axl": "wavesplatform/curve25519-js",
"tweetnacl": "1.0.3",
"uuid": "8.3.0",
"ws": "7.3.1"
},
"devDependencies": {
"eslint": "7.8.1",
"eslint-config-standard": "14.1.1",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.1",
"jsdoc": "3.6.5",
"mocha": "8.1.3",
"nyc": "15.1.0",
"sinon": "9.0.3"
},
"nyc": {
"check-coverage": true,
"per-file": true,
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100,
"reporter": [
"html",
"text"
]
}
}