forked from newbish/ethereum-events
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.62 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.62 KB
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
{
"name": "@changerio/ethereum-events",
"version": "0.2.0",
"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",
"publish": "npm publish --tolerate-republish"
},
"repository": {
"type": "git",
"url": "https://github.com/changerio/ethereum-events.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"keywords": [
"ethereum",
"events",
"listener",
"solidity",
"logs",
"contracts",
"web3"
],
"author": "Alessandro Genovese",
"license": "MIT",
"bugs": {
"url": "https://github.com/changerio/ethereum-events/issues"
},
"homepage": "https://github.com/changerio/ethereum-events#readme",
"dependencies": {
"eth-log-parser": "^0.1.0",
"p-limit": "^3.0.1",
"safe-memory-cache": "^2.0.0"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/web3": "^1.2.2",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.1.0",
"eslint": "^7.2.0",
"jest": "^27.5.1",
"mocha": "^8.0.1",
"nyc": "^15.1.0",
"prettier": "2.5.1",
"sinon": "^9.0.2",
"ts-jest": "^27.1.3",
"typescript": "^4.6.2"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": true,
"singleQuote": true
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
}
}