-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
43 lines (43 loc) · 940 Bytes
/
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
{
"name": "vcts",
"version": "0.0.1",
"description": "Verifiable Computation in Typescript",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"build": "npm test && tsc",
"test": "mocha --require ts-node/register tests/*_spec.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hecmas/VCts.git"
},
"keywords": [
"finite",
"fields",
"elliptic",
"curves",
"pairings"
],
"author": "Héctor Masip Ardevol",
"license": "MIT",
"bugs": {
"url": "https://github.com/hecmas/VCts/issues"
},
"homepage": "https://github.com/hecmas/VCts#readme",
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"chai": "^4.3.7",
"mocha": "^10.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
},
"dependencies": {
"bigint-isqrt": "^0.3.2",
"bigint-rnd": "^1.0.2",
"sha3": "^2.1.4"
}
}