This repository was archived by the owner on Dec 19, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.86 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.86 KB
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
{
"name": "@keep3r-network/keeper-scripting-utils",
"version": "1.1.1",
"description": "A library containing helper functions that facilitate scripting for keepers of the Keep3r Network",
"keywords": [
"ethereum",
"KP3R",
"keep3r",
"keep3r-network",
"keeper",
"wonderland",
"defi-wonderland"
],
"repository": {
"type": "git",
"url": "git+https://github.com/defi-wonderland/keeper-scripting-utils.git"
},
"license": "MIT",
"author": {
"name": "DeFi Wonderland",
"url": "https://github.com/defi-wonderland"
},
"main": "dist/index",
"types": "dist/index",
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.json",
"prod": "node dist/tsc/src/main.js",
"test": "tsc && TEST_MODE=true jest --verbose",
"test:coverage": "yarn test --collectCoverage",
"docs": "typedoc --entryPoints src/main.ts",
"lint": "eslint . --ext .ts --cache --fix",
"prepare": "husky install"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "2.0.4",
"@types/fs-extra": "9.0.13",
"@types/jest": "29.0.2",
"@types/jest-when": "2.7.3",
"@types/node": "15.0.1",
"@types/yargs": "17.0.3",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"esbuild": "0.11.11",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "4.0.0",
"husky": ">=6",
"jest": "29.0.3",
"jest-when": "3.4.1",
"lint-staged": ">=10",
"prettier": "2.4.1",
"ts-jest": "29.0.0",
"ts-node": "9.1.1",
"typedoc": "0.23.14",
"typescript": "4.2.3"
},
"lint-staged": {
"*.ts": "yarn lint"
},
"dependencies": {
"@flashbots/ethers-provider-bundle": "0.6.1",
"axios": "1.6.7",
"chalk": "4.1.1",
"dotenv": "16.0.1",
"ethers": "5.6.9",
"rxjs": "7.5.6"
}
}