-
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.16 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.16 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": "constructor-argument-detector",
"description": "",
"main": "build/export.js",
"bin": {
"constructor-detector": "build/bin.js",
"constructor-argument-detector": "build/bin.js",
"constructor-argument": "build/bin.js",
"constructor": "build/bin.js",
"constructorArgument": "build/bin.js",
"constructorArg": "build/bin.js"
},
"scripts": {
"prepare": "tsc -d",
"build": "tsc -d",
"start": "ts-node src/index.ts"
},
"keywords": [
"parser",
"typescript",
"parser-library",
"ethers",
"ethereum",
"smart-contracts",
"contracts",
"blockchain",
"arguments",
"constructor",
"bsc",
"web3",
"web3js",
"ethers",
"ethersjs"
],
"author": "",
"license": "ISC",
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"devDependencies": {
"@types/node": "^14.18.33",
"husky": "^8.0.1",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"dependencies": {
"@ethersproject/address": "^5.7.0",
"commander": "^9.4.1",
"dotenv": "^16.0.3",
"ethers": "^5.7.2"
}
}