-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.17 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.17 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
{
"name": "@spiko/contracts",
"description": "",
"author": "Hadrien Croubois (@Amxx)",
"version": "0.0.1",
"license": "MIT",
"files": [
"/contracts/**/*.sol",
"/build/contracts/*.json"
],
"scripts": {
"prepublish": "rimraf artifacts build cache generated",
"compile": "hardhat compile",
"coverage": "COVERAGE=true hardhat coverage",
"test": "hardhat test",
"format": "prettier --write \"contracts/**/*.sol\"",
"format:check": "prettier --check \"contracts/**/*.sol\""
},
"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.4.0",
"@openzeppelin/contracts-upgradeable": "^5.4.0",
"chai": "4.2.0",
"hardhat-chai-matchers@2.0.6": "link:nomicfoundation/hardhat-chai-matchers@2.0.6"
},
"devDependencies": {
"@amxx/hre": "^0.2.1",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.3",
"hardhat": "^2.22.3",
"lodash.defaultsdeep": "^4.6.1",
"prettier": "^3.2.5",
"prettier-plugin-solidity": "^2.0.0"
}
}