-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.39 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.39 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
55
56
57
{
"name": "@d3or/slotseek",
"version": "1.1.2",
"description": "A library for finding the storage slots on an ERC20 token for balances and approvals, which can be used to mock the balances and approvals of an address when estimating gas costs of transactions that would fail if the address did not have the required balance or approval",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"prepublishOnly": "npm run build && npm test"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"setupFiles": [
"<rootDir>/jest.setup.ts"
],
"testMatch": [
"<rootDir>/tests/**/*.test.ts"
]
},
"keywords": [
"ethereum",
"erc20"
],
"author": "d3or",
"license": "MIT",
"dependencies": {
"ethers": "^5.7.2"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"dotenv": "^16.4.5",
"jest": "^29.7.0",
"ts-jest": "^29.1.0",
"typescript": "^4.9.5"
},
"peerDependencies": {
"ethers": "^5.7.2"
},
"engines": {
"node": ">=14.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/d3or/slotseek.git"
},
"bugs": {
"url": "https://github.com/d3or/slotseek/issues"
},
"homepage": "https://github.com/d3or/slotseek#readme"
}