-
-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
77 lines (77 loc) · 2.2 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@metamask/eth-token-tracker",
"version": "10.0.0",
"description": "A module for tracking Ethereum token balances over block changes.",
"main": "dist/index.js",
"engines": {
"node": "^18.16.1 || ^20 || >=22"
},
"scripts": {
"lint": "yarn lint:dependencies",
"lint:changelog": "auto-changelog validate --prettier",
"lint:dependencies": "yarn dedupe",
"build": "babel --presets @babel/preset-env --plugins @babel/plugin-transform-runtime -d dist/ lib/",
"test": "tape test/**/*.js",
"buildSample": "browserify example/index.js -o bundle.js",
"prepack": "./scripts/prepack.sh"
},
"repository": {
"type": "git",
"url": "https://github.com/MetaMask/eth-token-tracker"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"keywords": [
"ethereum",
"tokens"
],
"author": "Dan Finlay <dan@danfinlay.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/MetaMask/eth-token-tracker/issues"
},
"homepage": "https://github.com/MetaMask/eth-token-tracker#readme",
"files": [
"/dist",
"/lib"
],
"dependencies": {
"@metamask/eth-block-tracker": "^11.0.1",
"@metamask/ethjs-contract": "^0.4.1",
"@metamask/ethjs-query": "^0.7.1",
"@metamask/safe-event-emitter": "^3.0.0",
"bn.js": "^5.2.1",
"deep-equal": "^2.2.0",
"human-standard-token-abi": "^2.0.0"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/runtime": "^7.21.0",
"@lavamoat/allow-scripts": "^2.3.1",
"@lavamoat/preinstall-always-fail": "^2.0.0",
"@metamask/auto-changelog": "^3.4.3",
"ganache": "7.3.1",
"solc": "^0.4.26",
"tape": "^5.6.1"
},
"peerDependencies": {
"@babel/runtime": "^7.21.0"
},
"packageManager": "yarn@3.2.1",
"lavamoat": {
"allowScripts": {
"@lavamoat/preinstall-always-fail": false,
"ganache>@trufflesuite/bigint-buffer": true,
"ganache>bufferutil": true,
"ganache>keccak": true,
"ganache>leveldown": true,
"ganache>secp256k1": true,
"ganache>utf-8-validate": true
}
}
}