-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 923 Bytes
/
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
{
"name": "sol-parser",
"version": "1.0.2",
"description": "Parse any contract from any EVM blockchain using the API of their block explorer site",
"main": "index.js",
"scripts": {
"build": "mkdir -p build && peggy --cache -o ./build/parser.js ./solidity.peggy",
"test": "mocha --timeout 15000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wrong7/solidity-parser.git"
},
"keywords": [
"solidity",
"solidity-language",
"parser",
"peggy",
"pegjs",
"evm",
"smart contract",
"ethereum"
],
"author": "Mario Clavero",
"license": "MIT",
"bugs": {
"url": "https://github.com/wrong7/solidity-parser/issues"
},
"homepage": "https://github.com/wrong7/solidity-parser#readme",
"devDependencies": {
"mocha": "^10.0.0"
},
"dependencies": {
"fs": "^0.0.1-security",
"node-fetch": "^2.6.7",
"peggy": "^2.0.0"
}
}