-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 943 Bytes
/
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
{
"name": "mempool-listener",
"version": "0.0.2",
"description": "A mempool listener for contract specific transactions.",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"clean": "rm -rf build && tsc",
"start": "tsc && node build/index.js",
"test": "npm run clean && mocha build/tests/*.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/0xfps/mempool-listener.git"
},
"keywords": [
"mempool",
"ethereum",
"blockchain",
"listener",
"smart-contract",
"evm"
],
"author": "0xfps",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/0xfps/mempool-listener/issues"
},
"homepage": "https://github.com/0xfps/mempool-listener#readme",
"dependencies": {
"chai": "^4.4.1",
"ethers": "^6.13.2",
"mocha": "^10.7.3"
},
"devDependencies": {
"@types/chai": "^4.3.17",
"@types/mocha": "^10.0.7"
}
}