-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.35 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
{
"name": "1-out-of-n",
"version": "0.5.1",
"description": "1-out-of-n oblivious transfer",
"main": "index.js",
"files": [
"index.js",
"lib/crypto.js",
"lib/ot.js",
"lib/util.js"
],
"scripts": {
"test": "npm run-script test-numbers; npm run-script test-strings; npm run-script test-ext; echo \"\\nexpected values are: [66, \\\"A sixth secret!!\\\", ...[\\\"PASSED\\\" + ...[Uint8Array]]]\"",
"test-numbers": "node demo/numbers/example.js",
"test-strings": "node demo/strings/example.js",
"test-ext": "node demo/ext/example.js",
"lint": "eslint lib",
"lint-fix": "eslint lib --fix",
"lint-all": "eslint .",
"lint-fix-all": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/wyatt-howe/1-out-of-n.git"
},
"keywords": [
"1-in-n",
"1-out-of-n",
"ot",
"oblivious-transfer",
"oblivious",
"transfer",
"ot-extension",
"oblivious-transfer-extension"
],
"author": "Wyatt Howe <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/wyatt-howe/1-out-of-n/issues"
},
"homepage": "https://github.com/wyatt-howe/1-out-of-n/#README",
"dependencies": {
"1-out-of-n": "^0.4.0",
"libsodium-wrappers-sumo": "^0.7.6"
},
"dev-dependencies": {
"eslint": "^7.2.0",
"eslint-plugin-requirejs": "^4.0.0"
}
}