-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
93 lines (93 loc) · 2.55 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@solarity/hardhat-migrate",
"version": "2.1.11",
"description": "Automatic deployment and verification of smart contracts",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"dist/src/",
"src/",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/dl-solarity/hardhat-migrate.git"
},
"workspaces": [
"test/fixture-projects/*"
],
"keywords": [
"ethereum",
"solidity",
"smart-contracts",
"hardhat",
"hardhat-plugin",
"etherscan",
"distributedlab",
"solarity"
],
"author": "Distributed Lab",
"license": "MIT",
"bugs": {
"url": "https://github.com/dl-solarity/hardhat-migrate/issues"
},
"homepage": "https://github.com/dl-solarity/hardhat-migrate#readme",
"scripts": {
"prepare": "husky",
"compile": "npm run prepare-tests && npm run build",
"build": "tsc --build .",
"prepare-tests": "npm run compile --workspaces",
"test": "mocha --recursive 'test/**/*.ts' --exit",
"coverage": "nyc mocha --recursive 'test/**/*.ts' --exit",
"clean-tests": "npm run clean --workspaces",
"lint-fix": "prettier --write \"./**/*.ts\" && eslint \"src/**/*.{js,ts}\" --cache --fix",
"publish-to-npm": "npm run compile && npm run lint-fix && npm publish ./ --access public"
},
"nyc": {
"reporter": [
"html",
"text"
]
},
"dependencies": {
"@nomicfoundation/hardhat-ethers": "3.0.8",
"@nomicfoundation/hardhat-verify": "2.0.12",
"@nomiclabs/hardhat-truffle5": "2.0.7",
"axios": "1.7.9",
"ethers": "6.13.4",
"ora": "5.4.1",
"prettier": "3.4.2"
},
"peerDependencies": {
"hardhat": "^2.10.0",
"typechain": "^8.0.0"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@openzeppelin/contracts": "^5.1.0",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@typechain/truffle-v5": "^8.0.7",
"@types/chai": "^4.3.20",
"@types/chai-as-promised": "^7.1.8",
"@types/mocha": "^10.0.10",
"@types/ora": "^3.2.0",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"chai": "^4.5.0",
"chai-as-promised": "^7.1.2",
"eslint": "^9.16.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^7.2.1",
"hardhat": "2.22.17",
"hardhat-abi-exporter": "^2.10.1",
"husky": "^9.1.7",
"mocha": "^11.0.1",
"nyc": "^17.1.0",
"ts-node": "^10.9.2",
"typechain": "^8.3.2",
"typescript": "5.7.2"
}
}