forked from ethereum/sourcify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.99 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "sourcify-monitor",
"version": "1.3.3",
"private": true,
"description": "A monitoring service to listen to chains and send detected new contracts to a Sourcify server",
"main": "index.js",
"scripts": {
"test": "c8 --reporter=none mocha 'test/**/*.spec.ts' --exit",
"build": "tsc",
"start": "node dist/index.js",
"fix": "run-s fix:*",
"fix:prettier": "prettier \"./**/*.ts\" --write",
"fix:lint": "eslint . --ext .ts --fix",
"check": "run-s check:*",
"check:eslint": "eslint . --ext .ts",
"check:prettier": "prettier \"./**/*.ts\" --check",
"dev": "node dist/index.js --chainsPath=chains-dev.json",
"cov": "run-s -c build test cov:html cov:lcov && open-cli coverage/index.html",
"cov:html": "c8 report --reporter=html",
"cov:lcov": "c8 report --reporter=lcov",
"cov:check": "c8 report && c8 check-coverage --lines 100 --functions 100 --branches 100"
},
"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.13",
"@ethereum-sourcify/lib-sourcify": "^1.10.0",
"chalk": "4.1.2",
"commander": "12.1.0",
"dotenv": "16.4.5",
"ethers": "6.13.4",
"winston": "3.17.0"
},
"devDependencies": {
"@types/chai": "4.3.20",
"@types/mocha": "10.0.10",
"@types/node": "22.10.0",
"@types/sinon": "17.0.3",
"c8": "10.1.2",
"chai": "4.5.0",
"hardhat": "2.22.16",
"mocha": "10.8.2",
"nock": "14.0.0-beta.18",
"open-cli": "8.0.0",
"sinon": "19.0.2",
"tree-kill": "1.2.2"
},
"c8": {
"exclude": [
"test/**"
],
"reporter": [
"html",
"lcov",
"text",
"text-summary"
]
}
}