forked from sCrypt-Inc/boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.55 KB
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
{
"name": "scrypt_boilerplate",
"version": "0.3.0",
"description": "Radiant (RXD) sCrypt project boilerplate",
"main": "",
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"test": "mocha -r ts-node/register 'tests/**/*.scrypttest.*' --reporter spec --timeout 600000 -g '' ",
"single-test": "cross-env NODE_OPTIONS=--max-old-space-size=8192 mocha -r ts-node/register --reporter spec --timeout 1200000000",
"testnet": "node ./testnet.js",
"watch": "node watcher.js",
"gen-desc": "node watcher.js --gen-desc",
"download:circom": "node ./util/getCircomCompiler.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scrypt-sv/boilerplate.git"
},
"keywords": [
"sCrypt",
"testing",
"Smart Contract",
"bitcoin",
"bitcoin-sv"
],
"author": "sCrypt Inc",
"license": "MIT",
"dependencies": {
"@radiantblockchain/radiantjs": "^1.9.0",
"axios": "^0.21.2",
"electrum-client": "0.0.6",
"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": "^0.16.2",
"tls": "^0.0.1",
"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"
}
}