-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
35 lines (35 loc) · 906 Bytes
/
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
{
"name": "p6-erc20-payment-splitter",
"private": false,
"description": "A payment splitter for splitting received ERC20 tokens among the holders of another ERC20 token.",
"version": "0.1.0",
"author": "Mian Muhammad Sharjeel Safdar <miansharjeelsafdar@gmail.com>",
"main": "index.js",
"license": "MIT",
"scripts": {
"migrate": "truffle migrate",
"test": "truffle test",
"compile": "truffle compile",
"console": "truffle console"
},
"dependencies": {
"@truffle/hdwallet-provider": "^1.5.0",
"arb-ethers-web3-bridge": "^0.7.3"
},
"devDependencies": {
"dotenv": "^10.0.0"
},
"keywords": [
"truffle",
"ethereum",
"smart-contracts",
"solidity"
],
"repository": {
"type": "git",
"url": "https://github.com/SharjeelSafdar/dapp-projects"
},
"bugs": {
"url": "https://github.com/SharjeelSafdar/dapp-projects/issues"
}
}