forked from elsehow/signal-protocol
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
43 lines (43 loc) · 1.04 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
{
"name": "@throneless/libsignal-protocol",
"repository": "https://github.com/throneless-tech/signal-protocol",
"description": "the signal ratcheting forward secrecy protocol, for node and browsers",
"author": "Josh King <josh@throneless.tech>",
"contributors": [
"elsehow",
"liliakai"
],
"version": "0.1.7",
"main": "src/main.js",
"files": [
"/build",
"/proto",
"/src"
],
"license": "GPL-3.0",
"dependencies": {
"bytebuffer": "^5.0.1",
"chai": "^4.1.0",
"long": "^3.2.0",
"node-webcrypto-ossl": "^1.0.30",
"protobufjs": "^5.0.1",
"tiny-worker": "^2.1.1",
"webworkify": "^1.4.0"
},
"devDependencies": {
"chai": "^4.1.0",
"grunt": "^1.0.4",
"grunt-browserify": "^5.0.0",
"grunt-cli": "^1.2.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-connect": "^1.0.2",
"grunt-contrib-jshint": "^1.1.0",
"grunt-mocha-test": "^0.13.2",
"mocha": "^6.2.2"
},
"scripts": {
"build": "grunt build",
"test": "grunt test",
"lint": "grunt jshint"
}
}