-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 965 Bytes
/
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": "@spiko/contracts",
"description": "",
"author": "Hadrien Croubois (@Amxx)",
"version": "0.0.1",
"license": "MIT",
"engines": {
"node": "20.x",
"pnpm": "9.x"
},
"files": [
"/contracts/**/*.sol",
"/build/contracts/*.json"
],
"scripts": {
"prepublish": "rimraf artifacts build cache generated",
"compile": "hardhat compile",
"coverage": "COVERAGE=true hardhat coverage",
"test": "hardhat test"
},
"repository": {
"type": "git",
"url": "https://github.com/spiko-tech/contracts.git"
},
"bugs": {
"url": "https://github.com/spiko-tech/contracts/issues"
},
"dependencies": {
"@chainlink/contracts": "^0.8.0",
"@openzeppelin/contracts": "^5.0.1",
"@openzeppelin/contracts-upgradeable": "^5.0.1"
},
"devDependencies": {
"@amxx/hre": "^0.2.1",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.3",
"hardhat": "^2.22.3",
"lodash.defaultsdeep": "^4.6.1"
}
}