This repository has been archived by the owner on Dec 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
40 lines (40 loc) · 1.52 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
{
"name": "bep20-upgradeable-contract",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"testrpc": "ganache-cli --gasLimit 13000000 -e 100000 --networkId 666",
"truffle": "truffle",
"truffle:test": "truffle test",
"truffle:compile": "truffle compile",
"truffle:migrate": "truffle migrate",
"lint": "npm run lint:sol && npm run lint:js",
"lint:js": "eslint test/**/*.js",
"lint:sol:fix": "solium -d contracts/ --fix",
"lint:sol": "solium -d contracts/",
"flatten": "truffle-flattener contracts/BEP20TokenFactory.sol > contracts/flattened/BEP20TokenFactory.sol && truffle-flattener contracts/BEP20TokenImplementation.sol > contracts/flattened/BEP20TokenImplementation.sol && truffle-flattener contracts/BEP20TokenImplementationV1.sol > contracts/flattened/BEP20TokenImplementationV1.sol && truffle-flattener contracts/BEP20UpgradeableProxy.sol > contracts/flattened/BEP20UpgradeableProxy.sol"
},
"author": "",
"license": "MIT",
"dependencies": {
"commander": "^3.0.1",
"nunjucks": "^3.2.0",
"openzeppelin-solidity": "v3.2.0",
"solidity-bytes-utils": "0.0.8",
"solium": "^1.2.5",
"truffle-assertions": "0.9.2",
"truffle-flattener": "1.4.4",
"web3": "1.2.6",
"web3-eth-abi": "1.3.0",
"await-sleep": "0.0.1",
"ethereum-input-data-decoder": "0.3.0",
"rlp": "2.2.5",
"elliptic": ">=6.5.3",
"minimist": ">=1.2.3",
"mem": ">=4.0.0",
"lodash": ">=4.17.19",
"node-fetch": ">=2.6.1",
"yargs-parser": ">=13.1.2"
}
}