-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.17 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2.17 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
57
58
59
60
{
"name": "rootstock-integration-tests",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "mocha --timeout 1200000",
"test-fail-fast": "mocha -b --timeout 1200000 --trace-warnings",
"run-tests-multiple-times": "node multipleTestExecutionsRunner.js",
"run-single-test-file": "node singleTestFileRunner.js",
"run-with-docker": "node runWithDocker.js",
"lint": "eslint --cache .",
"lint:fix": "eslint --cache --fix .",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"validate:all": "npm run lint && npm run format",
"fix:all": "npm run lint:fix; npm run format:fix"
},
"author": "",
"license": "GPL3",
"dependencies": {
"@noble/secp256k1": "2.2.3",
"@rsksmart/bridge-state-data-parser": "1.2.0",
"@rsksmart/bridge-transaction-parser": "github:rsksmart/bridge-transaction-parser#v1.2.0",
"@rsksmart/btc-eth-unit-converter": "1.0.1",
"@rsksmart/btc-rsk-derivation": "0.0.2",
"@rsksmart/pmt-builder": "3.0.1",
"@rsksmart/powpeg-redeemscript-parser": "github:rsksmart/powpeg-redeemscript-parser#fbe3b981b3f768396833f5f832526a9751098089",
"@rsksmart/rsk-precompiled-abis": "9.0.0-VETIVER",
"bn.js": "5.2.3",
"btc-transaction-helper": "git+https://git@github.com/rsksmart/btc-transaction-helper#v3.5.0",
"chai": "4.1.2",
"chai-as-promised": "7.1.1",
"colors": "1.4.0",
"dev-null": "0.1.1",
"dotenv": "17.3.1",
"find": "0.3.0",
"fs-extra": "4.0.2",
"glob": "7.1.2",
"lodash": "4.18.1",
"log4js": "6.9.1",
"mocha": "10.8.2",
"mocha-junit-reporter": "2.2.1",
"pegin-address-verificator": "git+https://git@github.com/rsksmart/pegin-address-verifier#v0.4.0",
"peglib": "git+https://github.com/rsksmart/rsk-peglib#v1.4.15",
"rsk-transaction-helper": "git+https://github.com/rsksmart/rootstock-transaction-helper#v3.1.0",
"solc": "0.8.34",
"stream-line-wrapper": "0.1.1",
"tmp": "0.2.5",
"wait-for-port": "0.0.2"
},
"devDependencies": {
"@eslint/js": "9.39.2",
"eslint": "9.39.2",
"eslint-config-prettier": "10.1.8",
"globals": "17.4.0",
"prettier": "3.8.1",
"shelljs": "0.10.0"
}
}