-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
58 lines (58 loc) · 1.84 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
{
"name": "@keep-network/hardhat-helpers",
"version": "0.7.2-pre.2",
"author": "Jakub Nowakowski <jakub.nowakowski@keep.network>",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"format": "npm run lint && prettier --check .",
"format:fix": "npm run lint:fix && prettier --write .",
"lint": "eslint . --ext .js,.ts",
"lint:fix": "eslint . --ext .js,.ts --fix",
"test": "mocha --exit --recursive 'test/**/*.test.ts'",
"build": "tsc --project tsconfig.export.json",
"prepack": "npm run build"
},
"files": [
"dist/",
"src/",
"LICENSE",
"README.md"
],
"devDependencies": {
"@keep-network/prettier-config-keep": "github:keep-network/prettier-config-keep",
"@nomicfoundation/hardhat-ethers": "^3.0.5",
"@nomicfoundation/hardhat-network-helpers": "^1.0.10",
"@nomicfoundation/hardhat-verify": "^2.0.3",
"@openzeppelin/hardhat-upgrades": "^3.0.2",
"@types/chai": "^4.2.21",
"@types/chai-as-promised": "^7.1.4",
"@types/debug": "^4.1.12",
"@types/fs-extra": "^9.0.13",
"@types/mocha": "^8.2.3",
"@types/node": "^20.11.2",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"eslint": "^8.56.0",
"eslint-config-keep": "github:keep-network/eslint-config-keep",
"ethers": "^6.10.0",
"fs-extra": "^10.1.0",
"hardhat": "^2.19.4",
"hardhat-deploy": "^0.11.45",
"mocha": "^9.0.2",
"prettier": "^2.3.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"peerDependencies": {
"@nomicfoundation/hardhat-ethers": "^3.0.5",
"@nomicfoundation/hardhat-verify": "^2.0.3",
"@openzeppelin/hardhat-upgrades": "^3.0.2",
"ethers": "^6.10.0",
"hardhat": "^2.19.4",
"hardhat-deploy": "^0.11.45"
}
}