-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
48 lines (48 loc) · 1.14 KB
/
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
39
40
41
42
43
44
45
46
47
48
{
"name": "token-snapshot",
"version": "2.0.4",
"description": "ERC20 Token Snapshot, compatible with all EVM chains.",
"main": "index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --fix \"**/*.{js,jsx}\"",
"prettier": "prettier --config .prettierrc \"**/*.{js,jsx}\" --write"
},
"bin": {
"snapshot": "index.js"
},
"keywords": [
"ethereum",
"EVM networks",
"erc20",
"token",
"snapshot",
"erc20-snapshot",
"token-snapshot"
],
"author": "@Pedrojok01",
"contributors": [
"Binod Nirvan"
],
"license": "Apache-2.0",
"homepage": "https://github.com/Pedrojok01/token-snapshot",
"repository": {
"type": "git",
"url": "https://github.com/Pedrojok01/token-snapshot"
},
"dependencies": {
"csv-writer": "^1.6.0",
"ethers": "^5.7.2",
"fs": "^0.0.1-security",
"inquirer": "^9.1.4",
"linq": "^4.0.1"
},
"devDependencies": {
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.1"
}
}