forked from MetaMask/eth-phishing-detect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.97 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
{
"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 test | tap-summary",
"test:unit": "node test unit | tap-summary",
"test:config": "node test config | tap-summary",
"buildSample": "browserify example/index.js -o example/bundle.js",
"ci": "node test | tap-summary --no-progress",
"clean:blocklist": "node src/clean-config.js blocklist",
"clean:allowlist": "node src/clean-config.js allowlist",
"add:blacklist": "node src/blacklist.js",
"add:blocklist": "node src/add-hosts.js src/config.json blocklist",
"add:allowlist": "node src/add-hosts.js src/config.json allowlist",
"update:db": "npm run update:db:tranco && npm run update:db:coinmarketcap && npm run update:db:snapsregistry",
"update:db:tranco": "node test/update-static-lists.js tranco",
"update:db:coinmarketcap": "node test/update-static-lists.js coinmarketcap",
"update:db:snapsregistry": "node test/update-static-lists.js snapsregistry"
},
"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": {
"browserify": "^17.0.0",
"csv-parse": "^5.3.6",
"dotenv": "^16.3.1",
"needle": "^3.2.0",
"punycode": "^2.3.0",
"simple-git-hooks": "^2.8.1",
"tap-summary": "^4.0.0",
"tape": "^5.6.3"
},
"directories": {
"test": "test"
},
"simple-git-hooks": {
"pre-commit": "src/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": ">=16.0.0"
},
"homepage": "https://github.com/MetaMask/eth-phishing-detect#readme"
}