forked from MetaMask/eth-phishing-detect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 2.15 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
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "eth-phishing-detect",
"version": "1.2.0",
"description": "Utility for detecting phishing domains targeting Ethereum users",
"main": "src/index.js",
"scripts": {
"prepare": "simple-git-hooks",
"test": "node --import tsx test | tap-summary",
"test:config": "node --import tsx test config | tap-summary",
"ci": "node --import tsx test | tap-summary --no-progress",
"clean:blocklist": "node --import tsx bin/clean-config.ts blocklist",
"clean:allowlist": "node --import tsx bin/clean-config.ts allowlist",
"add:blocklist": "node --import tsx bin/update-config.js blocklist add",
"add:allowlist": "node --import tsx bin/update-config.js allowlist add",
"remove:blocklist": "node --import tsx bin/update-config.js blocklist remove",
"remove:allowlist": "node --import tsx bin/update-config.js allowlist remove",
"update:lists": "node --import tsx bin/update-test-lists.ts all",
"update:list:tranco": "node --import tsx bin/update-test-lists.ts tranco",
"update:list:coinmarketcap": "node --import tsx bin/update-test-lists.ts coinmarketcap",
"update:list:snapsregistry": "node --import tsx bin/update-test-lists.ts snapsregistry",
"update:list:coingecko": "node --import tsx bin/update-test-lists.ts coingecko"
},
"author": "kumavis",
"license": "DBAD",
"resolutions": {
"browserify/assert": "^2.0.0",
"tap-summary/tap-out/trim": "^0.0.3"
},
"dependencies": {
"fastest-levenshtein": "^1.0.16"
},
"devDependencies": {
"@types/punycode": "^2.1.4",
"@types/tape": "^5.6.4",
"csv-parse": "^5.3.6",
"dotenv": "^16.3.1",
"punycode": "^2.3.0",
"simple-git-hooks": "^2.8.1",
"tap-summary": "^4.0.0",
"tape": "^5.6.3",
"tsx": "^4.19.0"
},
"directories": {
"test": "test"
},
"simple-git-hooks": {
"pre-commit": "bin/compare-git-configs.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MetaMask/eth-phishing-detect.git"
},
"bugs": {
"url": "https://github.com/MetaMask/eth-phishing-detect/issues"
},
"engines": {
"node": ">=18.0.0"
},
"homepage": "https://github.com/MetaMask/eth-phishing-detect#readme"
}