-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.87 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
{
"name": "@nthparty/oblivious",
"version": "1.3.0",
"description": "JavaScript library that serves as an API for common primitives used to implement OPRF and OT protocols.",
"main": "build/oblivious.js",
"types": "build/oblivious.d.ts",
"directories": {
"test": "test"
},
"files": [
"build/**",
"package.json",
"README.md",
"dist/**"
],
"scripts": {
"build": "tsc",
"dist": "webpack --mode=production",
"test": "jest --coverage",
"lint": "eslint src test/oblivious.test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nthparty/oblivious-js.git"
},
"author": "Nth Party, Ltd.",
"contributors": [
{
"name": "Wyatt Howe",
"email": "[email protected]",
"url": "nthparty.com"
},
{
"name": "Andrei Lapets",
"email": "[email protected]",
"url": "nthparty.com"
},
{
"name": "Frederick Jansen",
"email": "[email protected]",
"url": "nthparty.com"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/nthparty/oblivious-js/issues"
},
"homepage": "https://github.com/nthparty/oblivious-js#readme",
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node": "16.0.0",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"@webpack-cli/generators": "^2.2.0",
"coveralls": "^3.1.0",
"eslint": "^7.30.0",
"jest": "^27.0.6",
"nyc": "^15.1.0",
"source-map-support": "^0.5.6",
"ts-jest": "^27.0.3",
"ts-loader": "^6.2.2",
"ts-node": "^10.0.0",
"tslint": "^6.1.3",
"typedoc": "^0.18.0",
"typescript": "^4.1.3",
"webpack": "^5.42.1"
},
"dependencies": {
"@types/libsodium-wrappers": "^0.7.9",
"@types/libsodium-wrappers-sumo": "^0.7.5",
"@types/node": "^16.0.0",
"libsodium-wrappers-sumo": "^0.7.9"
}
}