-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 1.04 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
{
"name": "solstruct",
"version": "0.2.0",
"description": "A library of templated solidity structures",
"author": "Hadrien Croubois <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/Amxx/SolStruct#readme",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/Amxx/SolStruct.git"
},
"bugs": {
"url": "https://github.com/Amxx/SolStruct/issues"
},
"files": [
"/contracts",
"/build",
"/scripts",
"/patterns.txt"
],
"scripts": {
"generate": "python scripts/generator.py",
"compile": "hardhat compile",
"build": "npm run generate && npm run compile",
"test": "hardhat test",
"clear": "rimraf artifacts cache contracts/libs/*"
},
"devDependencies": {
"@nomiclabs/hardhat-solhint": "^2.0.0",
"@nomiclabs/hardhat-truffle5": "^2.0.0",
"@nomiclabs/hardhat-web3": "^2.0.0",
"chai": "4.2.0",
"hardhat": "^2.0.10",
"hardhat-gas-reporter": "^1.0.4",
"openzeppelin-test-helpers": "0.5.1",
"rimraf": "^3.0.2",
"solidity-coverage": "^0.7.14"
}
}