-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
70 lines (70 loc) · 1.85 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
{
"name": "oprf",
"version": "2.0.0",
"description": "Oblivious pseudo-random function over an elliptic curve (ED25519)",
"main": "build/oprf.js",
"types": "build/oprf.d.ts",
"directories": {
"test": "test"
},
"files": [
"build/**",
"package.json",
"README.md",
"dist/**"
],
"scripts": {
"build": "tsc",
"docs": "typedoc --out docs src",
"build-web": "webpack --mode=production",
"test": "tslint -c tslint.json --project tsconfig.json && nyc mocha --timeout 200000 -r ts-node/register -r source-map-support/register test/oprf.spec.ts",
"coveralls": "npm test && nyc report --reporter=text-lcov | ./node_modules/coveralls/bin/coveralls.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/multiparty/oprf.git"
},
"author": "Boston University - Software & Application Innovation Lab",
"contributors": [
{
"name": "Frederick Jansen",
"email": "[email protected]",
"url": "https://prettyplease.me/"
},
{
"name": "Lucy Qin",
"email": "[email protected]",
"url": "http://lucyq.in/"
},
{
"name": "Kinan Dak Albab",
"email": "[email protected]",
"url": "http://cs-people.bu.edu/babman/"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/multiparty/oprf/issues"
},
"homepage": "https://github.com/multiparty/oprf#readme",
"dependencies": {
"libsodium-wrappers-sumo": "^0.7.6"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^7.0.1",
"@types/node": "^13.7.1",
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"mocha": "^7.2.0",
"nyc": "^15.1.0",
"source-map-support": "^0.5.6",
"ts-loader": "^6.2.2",
"ts-node": "^8.6.2",
"tslint": "^6.1.3",
"typedoc": "^0.18.0",
"typescript": "^3.9.7",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
}
}