-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 826 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 826 Bytes
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
{
"name": "jiff-standalone-example",
"version": "1.0.0",
"description": "Example standlone JIFF application",
"main": "index.js",
"scripts": {
"build": "browserify client.js -s client --debug -o client.bundle.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/multiparty/jiff-standalone-example.git"
},
"keywords": [
"JIFF",
"MPC",
"secure-multiparty-computation"
],
"author": "Kinan Dak Albab <babman@brown.edu> (https://www.babman.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/multiparty/jiff-standalone-example/issues"
},
"homepage": "https://github.com/multiparty/jiff-standalone-example#readme",
"dependencies": {
"express": "^4.18.2",
"jiff-mpc": "^1.0.0"
},
"devDependencies": {
"browserify": "^16.5.2"
}
}