-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 809 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 809 Bytes
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
{
"name": "ntru-circom",
"version": "0.0.15",
"description": "NTRU encryption in Javascript and Circom",
"type": "module",
"main": "index.js",
"scripts": {
"todo": "bash -c \"grep -rn 'TODO' --exclude-dir={node_modules,build,cache,lib,out} --exclude={*.min*,*.swp,package.json,solc} *\"",
"test": "npx --node-options='--max-old-space-size=16240' mocha --timeout 900000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/numtel/ntru-circom.git"
},
"author": "numtel <ben@latenightsketches.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/numtel/ntru-circom/issues"
},
"homepage": "https://github.com/numtel/ntru-circom#readme",
"devDependencies": {
"circomkit": "^0.3.2",
"circomlib": "^2.0.5",
"mocha": "^10.8.2"
}
}