-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.49 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
{
"name": "@metamask/eth-token-tracker",
"version": "3.0.1",
"description": "A module for tracking Ethereum token balances over block changes.",
"main": "dist/index.js",
"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://[email protected]/MetaMask/eth-token-tracker.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"keywords": [
"ethereum",
"tokens"
],
"author": "Dan Finlay <[email protected]>",
"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": {
"deep-equal": "^1.1.0",
"eth-block-tracker": "^4.4.2",
"ethjs": "^0.3.6",
"ethjs-contract": "^0.2.1",
"ethjs-query": "^0.3.7",
"human-standard-token-abi": "^1.0.2",
"safe-event-emitter": "^1.0.1"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"ethereumjs-testrpc": "^3.0.4",
"solc": "^0.4.10",
"tape": "^4.6.3",
"web3-provider-engine": "^15.0.1"
}
}