-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.52 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.52 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
{
"name": "@enkryptcom/phishing-detect",
"version": "0.0.1",
"description": "Aggregate all phishing lists and create a merkle tree proof to validate without having to download whole list",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts src/update-lists.ts --format esm,cjs --dts --clean",
"lint": "prettier --write .",
"test": "ts-mocha -p tsconfig.json tests/**/*.test.ts",
"update:lists": "node dist/update-lists.js"
},
"engines": {
"node": ">=14.15.0"
},
"dependencies": {
"crc-32": "^1.2.2",
"ethereumjs-util": "^7.1.4",
"node-fetch": "^2.6.7",
"protobufjs": "^7.2.3"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.17",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"chai": "^4.3.6",
"eslint": "^8.9.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-module-resolver": "^1.4.0",
"mocha": "^9.2.0",
"prettier": "^2.5.1",
"ts-mocha": "^9.0.2",
"ts-node": "^10.5.0",
"tsconfig-paths": "^3.12.0",
"tsup": "^5.11.13",
"typescript": "^4.5.5",
"typescript-eslint": "0.0.1-alpha.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/<FILL_IT>"
},
"keywords": [],
"author": "kvhnuke",
"license": "MIT"
}