-
-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
56 lines (56 loc) · 1.51 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
{
"name": "@metamask/eth-token-tracker",
"version": "6.0.0",
"description": "A module for tracking Ethereum token balances over block changes.",
"main": "dist/index.js",
"engines": {
"node": "^16.20.1 || ^18.16.1 || >=20"
},
"scripts": {
"lint": "echo 'Skip'",
"prepublishOnly": "npm run build",
"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"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/MetaMask/eth-token-tracker.git"
},
"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/safe-event-emitter": "^2.0.0",
"deep-equal": "^2.2.0",
"eth-block-tracker": "^7.1.0",
"ethjs": "^0.4.0",
"ethjs-contract": "^0.2.3",
"ethjs-query": "^0.3.8",
"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",
"ganache": "7.3.1",
"solc": "^0.4.26",
"tape": "^5.6.1"
}
}