forked from wighawag/hardhat-deploy-ethers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2 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
{
"name": "hardhat-deploy-ethers",
"version": "0.3.0-beta.13",
"description": "Hardhat plugin for ethers that plays well with hardhat-deploy",
"homepage": "https://github.com/wighawag/hardhat-deploy-ethers",
"repository": "github:wighawag/hardhat-deploy-ethers",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"main": "internal/index.js",
"types": "internal/index.d.ts",
"keywords": [
"ethereum",
"smart-contracts",
"hardhat",
"hardhat-plugin",
"hardhat-deploy",
"ethers.js"
],
"files": [
"dist/src/",
"src/",
"internal/",
"types/",
"*.d.ts",
"*.d.ts.map",
"*.js",
"*.js.map",
"LICENSE",
"README.md"
],
"devDependencies": {
"@changesets/cli": "^2.16.0",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@typechain/ethers-v5": "^7.0.1",
"@typechain/hardhat": "^2.0.2",
"@types/chai": "^4.2.18",
"@types/fs-extra": "^9.0.11",
"@types/mocha": "^8.2.2",
"@types/node": "^15.12.2",
"chai": "^4.3.4",
"detect-port": "^1.3.0",
"ethers": "^5.3.0",
"ganache-cli": "^6.12.2",
"hardhat": "^2.3.0",
"hardhat-deploy": "^0.9.2",
"mocha": "^9.0.0",
"prettier": "^2.3.1",
"rimraf": "^3.0.2",
"source-map-support": "^0.5.19",
"ts-generator": "^0.1.1",
"ts-node": "^10.0.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-consistent-codestyle": "^1.16.0",
"tslint-plugin-prettier": "^2.0.1",
"typechain": "^5.0.0",
"typescript": "^4.3.2"
},
"peerDependencies": {
"ethers": "^5.0.0",
"hardhat": "^2.0.0"
},
"scripts": {
"prepare": "cd test/fixture-projects/hardhat-project/ && ts-node run-typechain.js && rimraf typechain/hardhat.d.ts",
"lint:fix": "prettier --write src/**/*.{js,ts} test/**/*.{js,ts} && yarn lint --fix",
"lint": "tslint --config tslint.json --project tsconfig.json",
"test": "mocha --recursive \"test/{index,with-hardhat-deploy}.ts\" --exit",
"build": "tsc",
"clean": "rimraf dist"
}
}