-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
58 lines (58 loc) · 1.55 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
{
"name": "jigg",
"version": "1.0.1",
"description": "JavaScript Implementation of Garbled Gates (two-party computation library for boolean circuits)",
"main": "src/jigg.js",
"dependencies": {
"casm": "^0.2.2",
"libsodium-wrappers-sumo": "^0.7.6",
"socket.io": "^2.2.0"
},
"devDependencies": {
"browserify": "^16.5.0",
"child_process": "^1.0.2",
"docdash": "^1.1.1",
"eslint": "^5.16.0",
"eslint-plugin-mocha": "^6.2.2",
"eslint-plugin-requirejs": "^4.0.0",
"express": "^4.17.1",
"jsdoc": "^3.6.3",
"mocha": "^4.0.1",
"neptune-notebook": "^1.3.1"
},
"scripts": {
"test": "mocha test/test.js --timeout 120000",
"build": "browserify src/jiggClient.js --debug --s JIGG -o dist/jigg.js",
"docs": "jsdoc -r src -c jsdoc.conf.json",
"casm": "node node_modules/casm/casm.js",
"lint": "eslint ./src/ ./demo/",
"tutorial": "node tutorial/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/multiparty/jigg.git"
},
"keywords": [
"Garbled-Circuit",
"2PC"
],
"author": "Wyatt Howe",
"contributors": [
{
"name": "Kinan Dak Albab",
"email": "[email protected]",
"url": "http://cs-people.bu.edu/babman/"
},
{
"name": "Andrei Lapets",
"email": "[email protected]",
"url": "https://lapets.io"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/multiparty/jigg/issues"
},
"legacy_homepage": "https://github.com/wyatt-howe/jigg#readme",
"homepage": "https://github.com/multiparty/jigg#readme"
}