-
Notifications
You must be signed in to change notification settings - Fork 104
/
package.json
42 lines (42 loc) · 1.13 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
{
"private": true,
"name": "@mantleio/replica-healthcheck",
"version": "0.1.0",
"description": "[Mantle] Service for monitoring the health of replica nodes",
"main": "dist/index",
"types": "dist/index",
"files": [
"dist/*"
],
"scripts": {
"start": "ts-node ./src/service",
"test:coverage": "echo 'No tests defined.'",
"build": "tsc -p tsconfig.json",
"clean": "rimraf ./dist ./tsconfig.tsbuildinfo",
"lint": "yarn run lint:fix && yarn run lint:check",
"pre-commit": "lint-staged",
"lint:fix": "yarn lint:check --fix",
"lint:check": "eslint . --max-warnings=0"
},
"keywords": [
"mantle",
"ethereum",
"replica",
"healthcheck"
],
"homepage": "https://github.com/mantlenetworkio/mantle/tree/develop/packages/replica-healthcheck#readme",
"license": "MIT",
"author": "Mantle PBC",
"repository": {
"type": "git",
"url": "https://github.com/mantlenetworkio/mantle.git"
},
"dependencies": {
"@mantleio/common-ts": "0.1.0",
"@mantleio/core-utils": "0.1.0",
"@ethersproject/abstract-provider": "^5.6.1"
},
"devDependencies": {
"ts-node": "^10.0.0"
}
}