-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.08 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.08 KB
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 <babman@bu.edu> (http://cs-people.bu.edu/babman/)",
"contributors": [
{
"name": "Rawane Issa",
"email": "ra1issa@bu.edu",
"url": "http://cs-people.bu.edu/ra1issa/"
},
{
"name": "Andrei Lapets",
"email": "lapets@bu.edu",
"url": "http://cs-people.bu.edu/lapets/"
}
],
"main": "lib/jiff-server.js",
"directories": {
"lib": "lib",
"test": "tests",
"example": "demos",
"doc": "docs/jsdoc"
},
"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": "./node_modules/.bin/jsdoc -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",
"test-demo": "./demos/run-test.sh",
"fix-memory-limit": "cross-env LIMIT=4096 increase-memory-limit"
},
"dependencies": {
"bignumber.js": "^5.0.0",
"cross-env": "^5.0.5",
"increase-memory-limit": "^1.0.3",
"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.0.2",
"socket.io-client": "^2.1.1"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.19.1",
"eslint-plugin-requirejs": "^2.0.1",
"express": "^4.16.3",
"jsdoc": "^3.5.5",
"marked": "^0.3.9",
"minimist": "^1.2.2",
"mocha": "^4.0.1"
}
}