-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 2.25 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
67
68
{
"name": "scheduled-release-token",
"version": "0.4.4",
"description": "ERC-20 without minting.",
"main": "index.js",
"scripts": {
"compile": "npx hardhat clean && npx hardhat compile",
"test": "npm run compile && npx hardhat test && npm run lint",
"coverage": "npm run compile && npx hardhat coverage && npm run lint && npm run compile",
"lint": "npx standard",
"fix": "npx standard --fix",
"dry-test": "npx hardhat test",
"gas-cost": "npx hardhat test",
"deploy-token-kovan": "npx hardhat clean && npx hardhat run scripts/1_deploy-token.js --network kovan && npx hardhat run scripts/2_publish_contract_definition_to_etherscan.js --network kovan",
"deploy-token-rinkeby": "npx hardhat clean && npx hardhat run scripts/1_deploy-token.js --network rinkeby && npx hardhat run scripts/2_publish_contract_definition_to_etherscan.js --network rinkeby",
"deploy-token-mainnet": "npx hardhat clean && npx hardhat run scripts/1_deploy-token.js --network mainnet && npx hardhat run scripts/2_publish_contract_definition_to_etherscan.js --network mainnet"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CoMakery/scheduled-release-token.git"
},
"keywords": [
"solidity"
],
"author": "CoMakery & Republic Crypto",
"license": "ISC",
"bugs": {
"url": "https://github.com/CoMakery/scheduled-release-token/issues"
},
"homepage": "https://github.com/CoMakery/scheduled-release-token#readme",
"dependencies": {
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^4.3.1",
"dotenv": "^8.2.0",
"ethereum-waffle": "^3.3.0",
"openzeppelin-test-helpers": "^0.5.1",
"solc": "^0.8.3",
"solidity-docgen": "^0.5.13"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^3.0.0",
"chai": "^4.3.4",
"hardhat": "^2.16.1",
"hardhat-docgen": "^1.1.1",
"hardhat-gas-reporter": "^1.0.4",
"solidity-coverage": "^0.7.16",
"standard": "^16.0.3"
},
"standard": {
"ignore": [
"/docs/**"
],
"globals": [
"describe",
"context",
"before",
"beforeEach",
"after",
"afterEach",
"it",
"expect",
"task",
"ethers",
"xit"
]
}
}