-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·64 lines (64 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·64 lines (64 loc) · 1.9 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
61
62
63
64
{
"name": "@rsksmart/rsk-contract-parser",
"version": "2.2.5",
"description": "A tool to parse/interact with contracts and decode events from the Rootstock blockchain.",
"main": "dist/index.js",
"scripts": {
"lint": "npx eslint src/**/*.js test/**/*.js",
"test": "npx mocha --ignore test/BcSearch/BcSearch.spec.js",
"test:local": "npx mocha test/compiler.spec.js test/events.spec.js test/nativeContracts.spec.js test/bridgeAbi.spec.js",
"build": "npm run lint && npx babel src -d dist --copy-files",
"abi": "npx babel-node --presets @babel/preset-env src/lib/compileJsonAbis.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rsksmart/rsk-contract-parser.git"
},
"keywords": [
"rsk",
"rootstock",
"blockchain",
"events",
"token",
"abi",
"contract",
"parser"
],
"author": "emi",
"license": "MIT",
"bugs": {
"url": "https://github.com/rsksmart/rsk-contract-parser/issues"
},
"homepage": "https://github.com/rsksmart/rsk-contract-parser#readme",
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.21.4",
"@babel/eslint-parser": "^7.26.10",
"@babel/node": "^7.12.6",
"@babel/preset-env": "^7.21.4",
"@babel/register": "^7.12.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^8.57.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-mocha": "^10.5.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.6.0",
"mocha": "^7.1.1",
"nodemon": "^2.0.6",
"openzeppelin-solidity": "^2.4.0"
},
"dependencies": {
"@ethersproject/abi": "^5.7.0",
"@rsksmart/nod3": "^0.5.0",
"@rsksmart/rsk-precompiled-abis": "^9.0.0-VETIVER",
"@rsksmart/rsk-utils": "^1.1.0",
"bs58": "^4.0.1",
"secp256k1": "^3.7.1"
},
"engines": {
"node": ">=20"
}
}