-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 889 Bytes
/
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
{
"name": "jiff-deletion",
"version": "1.0.0",
"description": "A (basic) demo for asynchronously and securly summing secrets from many input parties, with only two compute parties: a server, and an analyst.",
"main": "analyst.js",
"scripts": {
"start": "node server.js",
"lint": "npx eslint . --fix",
"format": "npx prettier --write ."
},
"keywords": [
"JIFF",
"MPC",
"secure-multiparty-computation"
],
"author": "",
"license": "MIT",
"dependencies": {
"axios": "^1.6.2",
"express": "^4.18.2",
"jiff-mpc": "^1.0.0",
"libsodium-wrappers": "^0.7.13",
"libsodium-wrappers-sumo": "^0.7.13"
},
"devDependencies": {
"eslint": "^8.55.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.3.1",
"eslint-plugin-promise": "^6.1.1",
"prettier": "^3.1.0"
}
}