forked from ethereum/sourcify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.31 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
{
"name": "sourcify-monitor",
"version": "1.1.12",
"description": "A monitoring service to listen to chains and send detected new contracts to a Sourcify server",
"main": "index.js",
"scripts": {
"test": "mocha 'test/**/*.test.js' --exit",
"build": "tsc",
"start": "node dist/index.js",
"lint": "eslint --ext .ts src/",
"dev": "node dist/index.js --chainsPath=chains-dev.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ethereum/sourcify.git"
},
"keywords": [
"sourcify",
"ethereum",
"blockchain",
"smart-contracts"
],
"author": "sourcify",
"license": "MIT",
"bugs": {
"url": "https://github.com/ethereum/sourcify/issues"
},
"homepage": "https://github.com/ethereum/sourcify#readme",
"dependencies": {
"@ethereum-sourcify/bytecode-utils": "^1.2.8",
"@ethereum-sourcify/lib-sourcify": "^1.7.4",
"chalk": "^4.1.2",
"commander": "^11.0.0",
"dotenv": "^16.3.1",
"ethers": "^6.7.1",
"node-fetch": "^2.6.6",
"winston": "^3.10.0"
},
"devDependencies": {
"@types/chai": "^4.3.6",
"@types/mocha": "^10.0.1",
"@types/node": "^20.6.2",
"@types/node-fetch": "^2.6.5",
"@types/sinon": "^10.0.16",
"chai": "^4.3.8",
"mocha": "^10.2.0",
"nock": "^13.3.3",
"sinon": "^16.0.0"
}
}