forked from rhlsthrm/hardhat-typechain
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.61 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.61 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
{
"name": "hardhat-typechain",
"version": "0.3.5",
"description": "Hardhat TypeScript plugin boilerplate",
"repository": "github:rhlsthrm/hardhat-typechain.git",
"author": "Rahul Sethuram",
"license": "MIT",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"keywords": [
"ethereum",
"smart-contracts",
"hardhat",
"hardhat-plugin",
"buidler",
"buidler-plugin"
],
"scripts": {
"lint:fix": "prettier --write 'src/**/*.{js,ts}' 'test/**/*.{js,ts}' && tslint --fix --config tslint.json --project tsconfig.json",
"lint": "tslint --config tslint.json --project tsconfig.json",
"test": "mocha --exit --recursive 'test/**/*.test.ts'",
"build": "tsc",
"watch": "tsc -w"
},
"files": [
"dist/src/",
"src/",
"LICENSE",
"README.md"
],
"devDependencies": {
"@typechain/ethers-v5": "^5.0.0",
"@typechain/truffle-v5": "^4.0.1",
"@typechain/web3-v1": "^2.0.0",
"@types/chai": "^4.2.15",
"@types/fs-extra": "^9.0.7",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.28",
"@types/rimraf": "^3.0.0",
"chai": "^4.3.0",
"dotenv": "^8.2.0",
"ethers": "^5.0.31",
"fs-extra": "^9.1.0",
"hardhat": "^2.0.10",
"mocha": "^8.3.0",
"prettier": "^2.2.1",
"source-map-support": "^0.5.19",
"ts-generator": "^0.1.1",
"ts-node": "^9.1.1",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"typechain": "^4.0.1",
"typescript": "^4.1.5"
},
"peerDependencies": {
"hardhat": "^2.0.10",
"ts-generator": "^0.1.1",
"typechain": "^4.0.1"
}
}