-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.61 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
{
"name": "scrypt_bls12-381",
"version": "0.2.0",
"description": "sCrypt project bls12-381",
"main": "",
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"test": "npm run test:withoutHeavy",
"test:withoutHeavy": "mocha -r ts-node/register 'tests/**/*.scrypttest.*' --reporter spec --timeout 10000 -i -f 'Heavy'",
"test:all": "mocha -r ts-node/register 'tests/**/*.scrypttest.*' --reporter spec --timeout 1200000",
"single-test": "cross-env NODE_OPTIONS=--max-old-space-size=8192 mocha -r ts-node/register --reporter spec --timeout 0",
"testnet": "node ./testnet.js",
"watch": "node watcher.js",
"gen-desc": "node watcher.js --gen-desc",
"setup:circuits": "sh ./scripts/setup-circuits.sh",
"download:circom": "sh ./scripts/setup-circom.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/walker9296/BLS12-381.git"
},
"keywords": [
"sCrypt",
"testing",
"Smart Contract",
"bitcoin",
"bitcoin-sv"
],
"author": "walker9296",
"license": "MIT",
"dependencies": {
"axios": "^0.21.2",
"circom_tester": "0.0.14",
"circomlib": "^2.0.5",
"circomlibjs": "^0.1.6",
"cross-env": "^7.0.3",
"glob": "^7.1.6",
"minimist": "^1.2.6",
"rabinsig": "^1.0.0",
"scryptlib": "^1.0.9",
"snarkjs-scrypt": "^0.4.26",
"watch": "^1.0.2"
},
"devDependencies": {
"@noble/secp256k1": "^1.6.0",
"@types/chai": "^4.2.8",
"@types/mocha": "^7.0.1",
"@types/node": "^13.7.6",
"chai": "^4.2.0",
"mocha": "^7.0.1",
"ts-node": "^8.10.2",
"tsconfig-paths": "^3.9.0",
"typescript": "^3.7.5"
}
}