forked from TDD-Solidity/EthDrop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.31 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
{
"name": "ethdrop",
"version": "1.0.0",
"description": "An webapp & smart contracts for airdropping ether",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"scripts": {
"start": "truffle develop",
"test": "truffle test",
"test:watch": "nodemon --ext 'js,sol' --exec 'truffle test --compile-all'",
"test:cc": "truffle run coverage",
"build": "truffle build",
"deploy-rinkeby": "truffle migrate --reset --network rinkeby",
"deploy-goerli": "truffle migrate --reset --network goerli",
"deploy-ropsten": "truffle migrate --network ropsten",
"deploy-matic": "truffle migrate --network matic",
"size": "truffle run contract-size"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JimLynchCodes/EthDrop.git"
},
"author": "JimLynchCodes <jim.lynch@evaluates2.com> (https://evaluates2.com)",
"license": "ISC",
"bugs": {
"url": "https://github.com/JimLynchCodes/EthDrop/issues"
},
"homepage": "https://github.com/JimLynchCodes/EthDrop#readme",
"dependencies": {
"dotenv": "^10.0.0",
"truffle": "^5.4.3",
"truffle-assertions": "^0.9.2",
"truffle-contract-size": "^2.0.1",
"truffle-hdwallet-provider": "^1.0.17"
},
"devDependencies": {
"nodemon": "^2.0.12",
"solidity-coverage": "^0.7.17"
}
}