-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
54 lines (54 loc) · 1.57 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
{
"name": "@jbx-protocol/contracts-v1",
"bugs": {
"url": "https://github.com/jbx-protocol/juice-contracts-v1/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/jbx-protocol/juice-contracts-v1/"
},
"version": "2.0.0",
"license": "MIT",
"devDependencies": {
"@chainlink/contracts": "^0.1.6",
"@nomiclabs/hardhat-etherscan": "^2.1.4",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "4.2.0",
"@paulrberg/contracts": "3.4.0",
"chai": "^4.3.4",
"dotenv": "^10.0.0",
"esm": "^3.2.25",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.4.6",
"glob": "^7.2.0",
"hardhat": "^2.6.7",
"hardhat-deploy": "^0.9.1",
"hardhat-deploy-ethers": "^0.3.0-beta.10",
"hardhat-gas-reporter": "^1.0.4",
"prettier": "^2.4.0"
},
"homepage": "https://github.com/jbx-protocol",
"keywords": [
"blockchain",
"erc20",
"erc721",
"dao",
"nft",
"ethereum",
"library",
"smart-contracts",
"solidity"
],
"scripts": {
"chain": "hardhat node --no-deploy",
"account": "hardhat account",
"test": "mocha -r esm --bail --timeout 6000",
"test:unit": "mocha -r esm --grep \"Unit\" --bail",
"test:integration": "mocha -r esm --grep \"Integration\" --bail",
"test:integration-exhaustive": "INTEGRATION_TEST_COUNT=100 mocha -r esm --grep \"Integration\"",
"clean": "rimraf ./cache && rimraf ./artifacts",
"compile": "yarn clean && hardhat compile",
"pretty": "prettier --write \"./**/*.{js,jsx,json}\""
}
}