-
Notifications
You must be signed in to change notification settings - Fork 61
/
package.json
61 lines (61 loc) · 2.32 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
60
61
{
"name": "@oceanprotocol/contracts",
"version": "2.2.1",
"description": "Ocean Protocol Smartcontracts",
"bugs": {
"url": "https://github.com/oceanprotocol/contracts/issues"
},
"homepage": "https://github.com/oceanprotocol/contracts#readme",
"main": "README.md",
"directories": {
"doc": "docs",
"test": "test"
},
"files": [
"artifacts/**/*",
"addresses/*",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/oceanprotocol/contracts.git"
},
"author": "Ocean Protocol",
"license": "Apache-2.0",
"scripts": {
"test:full": "npx hardhat test test/unit/*/*.test.js test/flow/*.test.js ",
"test:batch": "npx hardhat test test/flow/SwapBatch.test.js ",
"test:fre": "npx hardhat test test/flow/FixedRateExchange.test.js ",
"test:dispenser": "npx hardhat test test/flow/Dispenser.test.js ",
"test:debug": "npx hardhat test test/flow/Vesting.test.js ",
"test:erc721": "npx hardhat test test/unit/datatokens/ERC721Template.test.js",
"test:erc20": "npx hardhat test test/unit/datatokens/ERC20Template.test.js",
"test:enterprise": "npx hardhat test test/unit/datatokens/ERC20TemplateEnterprise.test.js",
"test:template3": "npx hardhat test test/unit/datatokens/ERC20Template3.test.js",
"test:template4": "npx hardhat test test/unit/datatokens/ERC20Template4.test.js",
"test:factory": "npx hardhat test test/unit/factories/ERC721Factory.test.js",
"test:router": "npx hardhat test test/unit/pools/FactoryRouter.test.js",
"test:flow": "npx hardhat test test/flow/*.test.js ",
"test:unit": "npx hardhat test test/unit/datatokens/ERC20TemplateEnterprise.test.js ",
"test:full:cover": "npx hardhat coverage"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomicfoundation/hardhat-verify": "^2.0.9",
"@nomiclabs/hardhat-vyper": "^3.0.5",
"@nomiclabs/hardhat-waffle": "^2.0.6",
"@openzeppelin/contracts": "^4.8.3",
"@openzeppelin/test-helpers": "^0.5.15",
"chai": "^4.3.10",
"dotenv": "^16.3.1",
"eth-permit": "^0.2.3",
"ethereum-waffle": "^4.0.10",
"ethereumjs-util": "^7.1.5",
"ethers": "^5.7.2",
"hardhat": "^2.22.8",
"hardhat-contract-sizer": "^2.10.0",
"hardhat-gas-reporter": "^2.2.1",
"solidity-bytes-utils": "^0.8.0",
"solidity-coverage": "^0.8.5"
}
}