-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.46 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
{
"name": "@solarity/hardhat-gobind",
"version": "1.2.2",
"description": "Generation of smart contract bindings for Golang",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"bin/",
"dist/src/",
"src/",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/dl-solarity/hardhat-gobind.git"
},
"keywords": [
"ethereum",
"solidity",
"smart-contracts",
"go-bindings",
"hardhat",
"hardhat-plugin",
"distributedlab",
"solarity"
],
"author": "Distributed Lab",
"license": "MIT",
"bugs": {
"url": "https://github.com/dl-solarity/hardhat-gobind/issues"
},
"homepage": "https://github.com/dl-solarity/hardhat-gobind#readme",
"scripts": {
"prepare": "husky",
"build": "tsc --build .",
"test": "mocha --config .mocharc.json --recursive test/**/*.test.ts --timeout 10000 --exit",
"lint-fix": "prettier --write \"./**/*.{ts,js,sol}\"",
"publish-to-npm": "npm run build && npm run lint-fix && npm publish ./ --access public"
},
"dependencies": {
"lodash": "4.17.21"
},
"peerDependencies": {
"hardhat": "^2.10.0"
},
"devDependencies": {
"@types/chai": "^4.3.12",
"@types/mocha": "^10.0.6",
"chai": "^4.4.1",
"hardhat": "2.20.1",
"husky": "^9.0.11",
"mocha": "^10.3.0",
"prettier": "^3.2.5",
"prettier-plugin-solidity": "^1.3.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}