-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
46 lines (46 loc) · 1.15 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
{
"name": "ethereum-events",
"version": "0.1.3",
"description": "Efficient and reliable event listener for Ethereum.",
"main": "index.js",
"scripts": {
"test": "mocha --recursive --exit",
"coverage": "nyc --all npm test",
"coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
"lint": "eslint --ignore-path .gitignore .",
"lint:fix": "eslint --ignore-path .gitignore . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AleG94/ethereum-events.git"
},
"keywords": [
"ethereum",
"events",
"listener",
"solidity",
"logs",
"contracts",
"web3"
],
"author": "Alessandro Genovese",
"license": "MIT",
"bugs": {
"url": "https://github.com/AleG94/ethereum-events/issues"
},
"homepage": "https://github.com/AleG94/ethereum-events#readme",
"dependencies": {
"eth-log-parser": "^0.1.0",
"p-limit": "^3.0.1",
"safe-memory-cache": "^2.0.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.1.0",
"eslint": "^7.2.0",
"mocha": "^8.0.1",
"nyc": "^15.1.0",
"sinon": "^9.0.2"
}
}