-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 1.89 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
{
"name": "@ixswap1/evm-watchtower",
"version": "1.0.2",
"description": "EVM watchtower to monitor contracts activity over the time.",
"main": "dist/index.js",
"repository": "[email protected]:IX-Swap/evm-watchtower.git",
"author": "AlexanderC <[email protected]>",
"license": "MIT",
"bin": {
"evm-wt": "./index.js"
},
"scripts": {
"prepublishOnly": "npm test && npm run build",
"prebuild": "rimraf dist",
"build": "tsc",
"build:watch": "tsc --watch",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" -c .eslintrc.js --fix",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"postinstall": "check-engine"
},
"dependencies": {
"@ixswap1/ethers-multicall": "^0.1.0",
"check-engine": "^1.10.0",
"ethers": "^5.5.3",
"fs-extra": "^10.0.0",
"nconf": "^0.11.3",
"ololog": "^1.1.175",
"rimraf": "^3.0.2",
"yargs": "^17.3.1"
},
"devDependencies": {
"@types/jest": "^25.2.3",
"@types/node": "^14.14.25",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"eslint": "^7.19.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.5.0",
"ts-loader": "^7.0.5",
"ts-node": "^8.10.2",
"tsconfig-paths": "^3.9.0",
"typescript": "^3.9.7"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
},
"engines": {
"node": ">=14.0.0"
}
}