-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
87 lines (87 loc) · 2.98 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "jiff-mpc",
"version": "1.0.0",
"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": [
"Rawane Issa <ra1issa@bu.edu> (http://cs-people.bu.edu/ra1issa/)",
"Andrei Lapets <lapets@bu.edu> (http://cs-people.bu.edu/lapets/)"
],
"main": "lib/index.js",
"directories": {
"doc": "docs",
"lib": "lib",
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/multiparty/jiff-server.git"
},
"files": [
"dist/",
"lib/",
"README.md",
"LICENSE"
],
"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 's/module:jiff-client~JIFFClient#//g'",
"test-demo": "./demos/run-test.sh",
"cypress:open": "cypress open --config-file demos/cypress.config.ts",
"fix-memory-limit": "cross-env LIMIT=4096 increase-memory-limit",
"prettier": "npx prettier --check '**/*.{js,ts}'",
"prettier:fix": "npx prettier --write '**/*.{js,ts}'",
"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": "^9.1.2",
"cross-env": "^7.0.3",
"docdash": "^1.1.1",
"increase-memory-limit": "^1.0.3",
"isomorphic-ws": "^5.0.0",
"jquery-deferred": "^0.3.1",
"libsodium-wrappers": "^0.7.13",
"mathjs": "^5.0.4",
"numeric": "^1.2.6",
"request": "^2.88.0",
"socket.io": "^4.7.5",
"socket.io-client": "^4.7.5",
"websocket": "^1.0.32",
"ws": "^8.16.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.12.4",
"browserify": "^17.0.0",
"chai": "^4.1.2",
"clean-jsdoc-theme": "^4.2.17",
"cypress": "^13.7.2",
"docdash-with-dark-mode": "^1.0.1",
"express": "^4.19.2",
"jest": "^29.7.0",
"jsdoc": "^3.6.3",
"marked": "^4.0.10",
"minimist": "^1.2.8",
"mocha": "^4.1.0",
"neptune-notebook": "^1.3.1",
"prettier": "3.2.5",
"ts-jest": "^29.1.2",
"typescript": "^5.4.4"
}
}