-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
50 lines (50 loc) · 1.68 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
{
"name": "evm-proxy-detection",
"version": "2.0.1",
"description": "Detect proxy contracts and their target addresses using an EIP-1193 compatible JSON-RPC request function",
"repository": "https://github.com/abipub/evm-proxy-detection.git",
"author": "Jan-Felix <[email protected]>",
"license": "MIT",
"main": "build/cjs/index.js",
"typings": "build/cjs/index.d.ts",
"module": "build/esm/index.js",
"files": [
"build",
"LICENSE",
"README.md"
],
"scripts": {
"prepack": "yarn build",
"build": "rimraf build && yarn build:cjs && yarn build:esm",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"check": "yarn check:prettier && yarn check:lint && yarn check:spelling",
"check:lint": "eslint src test --ext .ts",
"check:prettier": "prettier \"src/**/*.ts\" --list-different",
"check:spelling": "cspell \"**\"",
"fix": "yarn fix:prettier && yarn fix:lint",
"fix:prettier": "prettier \"src/**/*.ts\" --write",
"fix:lint": "eslint src --ext .ts --fix",
"test": "env-cmd jest"
},
"devDependencies": {
"@ethersproject/providers": "^5.6.8",
"@types/jest": "^29.5.12",
"@types/node": "^18.0.4",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"cspell": "^6.2.3",
"env-cmd": "^10.1.0",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.26.0",
"jest": "^29.7.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"packageManager": "[email protected]"
}