-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.18 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
{
"name": "sc-indexer",
"version": "0.0.52",
"description": "A super fast, low level events indexer for smart contracts on Ethereum. This package allows for efficient indexing and querying of events emitted by smart contracts on the Ethereum blockchain.",
"main": "index.js",
"scripts": {
"test": "npm run dev",
"dev": "node ./dist/examples/compound/sync.js",
"build": "babel src -d dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/azizaiden/sc-indexer.git"
},
"keywords": [
"ethereum",
"smartcontract",
"contract",
"sc",
"indexer",
"indexing"
],
"author": "Aziz Aiden",
"license": "MIT",
"bugs": {
"url": "https://github.com/azizaiden/sc-indexer/issues"
},
"dependencies": {
"abi-decoder": "^2.4.0",
"bignumber.js": "^5.0.0",
"bottleneck": "^2.19.5",
"mongodb": "^3.0.2",
"web3": "^1.8.1",
"winston": "3.0.0-rc0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"eslint": "^8.32.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5"
},
"homepage": "https://github.com/azizaiden/sc-indexer#readme"
}