-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.73 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
62
63
64
65
66
{
"name": "@ai-protocol/advanced-erc20",
"version": "1.0.0",
"description": "Feature rich lightweight ERC20 implementation",
"main": "index.js",
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"clean": "hardhat clean",
"compile": "hardhat compile",
"test": "hardhat test",
"coverage": "hardhat coverage",
"verify-testnet": "npm run verify-goerli && npm run verify-binance_testnet && npm run verify-opBnb_testnet && npm run verify-base_goerli",
"verify": "npm run verify-mainnet && npm run verify-binance && npm run verify-opBnb && npm run verify-base_mainnet",
"verify-goerli": "hardhat etherscan-verify --network goerli --api-key $ETHERSCAN_KEY",
"verify-binance_testnet": "hardhat etherscan-verify --network binance_testnet --api-key $BSCSCAN_KEY",
"verify-opBnb_testnet": "hardhat etherscan-verify --network opBnb_testnet --api-key $BSCSCAN_KEY --api-url https://api-opbnb-testnet.bscscan.com/",
"verify-base_goerli": "hardhat etherscan-verify --network base_goerli --api-key $BASESCAN_KEY --api-url https://api-goerli.basescan.org/",
"verify-mainnet": "hardhat etherscan-verify --network mainnet --api-key $ETHERSCAN_KEY",
"verify-binance": "hardhat etherscan-verify --network binance --api-key $BSCSCAN_KEY",
"verify-opBnb": "hardhat etherscan-verify --network opBnb --api-key $BSCSCAN_KEY --api-url https://opbnbscan.com",
"verify-base_mainnet": "hardhat etherscan-verify --network base_mainnet --api-key $BASESCAN_KEY --api-url https://api.basescan.org"
},
"keywords": [],
"author": "AI Protocol",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:AI-Protocol-Official/advanced-erc20.git"
},
"bugs": {
"url": "https://github.com/AI-Protocol-Official/advanced-erc20/-/issues"
},
"homepage": "https://github.com/AI-Protocol-Official/advanced-erc20#advanced-erc20",
"dependencies": {
"@ai-protocol/access-control-upgradeable": "github:AI-Protocol-Official/access-control-upgradeable",
"@lazy-sol/a-missing-gem": "^1.0.2",
"@nomiclabs/hardhat-truffle5": "^2.0.7",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts": "4.9.3",
"@openzeppelin/contracts-upgradeable": "4.9.3",
"dotenv": "^16.4.5",
"hardhat": "^2.16.0",
"hardhat-dependency-compiler": "^1.1.3",
"hardhat-deploy": "^0.11.45"
},
"devDependencies": {
"@openzeppelin/test-helpers": "github:AI-Protocol-Official/openzeppelin-test-helpers",
"chai": "^4.4.1",
"chai-subset": "^1.6.0",
"eth-sig-util": "^3.0.1",
"ethereumjs-util": "^7.1.5",
"ethereumjs-wallet": "^1.0.2",
"loglevel": "^1.9.1",
"solidity-coverage": "^0.8.8"
},
"overrides": {
"minimatch": "^3.0.5",
"yargs-parser": "^5.0.1",
"flat": "^5.0.1",
"eth-gas-reporter": "^0.0.5",
"lodash": "^4.17.20",
"shelljs": "^0.8.4"
}
}