forked from multiparty/jiff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.57 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
67
68
69
70
71
72
{
"name": "jiff-mpc",
"version": "0.0.1",
"description": "Server/client library for building MPC applications using JavaScript; handles relaying shares between parties.",
"keywords": [
"secure-multiparty-computation",
"secure-multi-party-computation",
"secure-mpc",
"mpc",
"multiparty",
"multi-party",
"web-mpc"
],
"homepage": "https://multiparty.org/jiff",
"bugs": {
"url": "https://github.com/multiparty/jiff/issues"
},
"license": "MIT",
"author": "Kinan Dak Albab <[email protected]> (http://cs-people.bu.edu/babman/)",
"contributors": [
"Rawane Issa <[email protected]> (http://cs-people.bu.edu/ra1issa/)",
"Andrei Lapets <[email protected]> (http://cs-people.bu.edu/lapets/)"
],
"main": "lib/jiff-server.js",
"directories": {
"doc": "docs",
"lib": "lib",
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/multiparty/jiff-server.git"
},
"scripts": {
"test": "./tests/suite/test.sh",
"suite": "./tests/suite/suite.sh",
"gen-docs": "jsdoc -r -c docs/jsdoc.conf.json && sed -i -e 's/lib\\/ext\\/README.md/extensions.html/g' docs/jsdoc/*.html && sed -i -e 's/lib\\/ext\\/Hooks.md/hooks.html/g' docs/jsdoc/*.html && sed -i -e 's/Hooks.md/hooks.html/g' docs/jsdoc/*.html && sed -i -e 's/CONTRIBUTING.md/CONTRIBUTING.html/g' docs/jsdoc/*.html && grep -rl \"module:jiff-client~JIFFClient#\" docs/jsdoc/*.html | xargs sed -i 'html' 's/module:jiff-client~JIFFClient#//g'",
"test-demo": "./demos/run-test.sh",
"fix-memory-limit": "cross-env LIMIT=4096 increase-memory-limit",
"lint": "eslint .",
"tutorial": "npm install && cd tutorials && node index.js",
"build": "browserify lib/jiff-client.js --debug -s JIFFClient -o dist/jiff-client.js && browserify lib/ext/jiff-client-websockets.js --debug -s jiff_websockets -o dist/jiff-client-websockets.js"
},
"dependencies": {
"bignumber.js": "^5.0.0",
"cross-env": "^5.0.5",
"docdash": "^1.1.1",
"increase-memory-limit": "^1.0.3",
"isomorphic-ws": "^4.0.1",
"jquery-deferred": "^0.3.1",
"libsodium-wrappers": "^0.7.2",
"mathjs": "^5.0.4",
"numeric": "^1.2.6",
"request": "^2.88.0",
"socket.io": "^2.2.0",
"socket.io-client": "^2.2.0",
"websocket": "^1.0.32",
"ws": "^7.3.1"
},
"devDependencies": {
"browserify": "^16.5.2",
"chai": "^4.1.2",
"eslint": "^4.19.1",
"eslint-plugin-requirejs": "^2.0.1",
"express": "^4.16.3",
"jsdoc": "^3.6.3",
"marked": "^0.7.0",
"minimist": "^1.2.0",
"mocha": "^4.1.0",
"neptune-notebook": "^1.3.1"
}
}