-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
39 lines (39 loc) · 1.18 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": "@intercoin/nonfungibletokencontract",
"version": "1.0.0",
"description": "NFT contracts that support a new ERC token standard for paying commissions to authors",
"main": "index.js",
"files": [
"/contracts/**/*.sol",
"/build/contracts/*.json",
"!/contracts/mocks/**/*"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Intercoin/NonFungibleTokenContract.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Intercoin/NonFungibleTokenContract/issues"
},
"homepage": "https://github.com/Intercoin/NonFungibleTokenContract#readme",
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"dotenv": "^16.4.5",
"hardhat-contract-sizer": "^2.10.0",
"solidity-coverage": "^0.8.12"
},
"dependencies": {
"@intercoin/community": "^1.1.3",
"@intercoin/releasemanager": "^2.2.0",
"@intercoin/trustedforwarder": "^1.0.1",
"@openzeppelin/contracts": "^4.1.0",
"@openzeppelin/contracts-upgradeable": "^4.1.0",
"@openzeppelin/test-helpers": "^0.5.15",
"@uniswap/lib": "^4.0.1-alpha"
}
}