-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
21 lines (21 loc) · 1.22 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "eip1167-spawner",
"version": "0.3.1",
"description": "Spawn EIP 1167 minimal proxies with an included initialization step during contract creation.",
"author": "0age",
"license": "MIT",
"devDependencies": {
"ethereumjs-util": "^6.1.0",
"ganache-cli": "6.3.0",
"truffle": "^5.0.22",
"web3": "1.2.1"
},
"scripts": {
"all": "./node_modules/.bin/ganache-cli --gasLimit 8000000 -i 1234 2>&1 > ganache-output.log & echo 'local chain started.' && ./node_modules/.bin/truffle compile && node scripts/test/ci.js; kill -9 \"$(ps -ax | grep -m1 '[n]ode ./node_modules/.bin/ganache-cli' | awk '{print $1;}')\" && echo 'local chain stopped.'",
"build": "./node_modules/.bin/truffle compile",
"ci": "./node_modules/.bin/ganache-cli --gasLimit 8000000 -q & echo 'local chain started.' && ./node_modules/.bin/truffle compile && node scripts/test/ci.js",
"start": "./node_modules/.bin/ganache-cli --gasLimit 8000000 -i 1234 2>&1 > ganache-output.log & echo 'local chain started.'",
"stop": "kill -9 \"$(ps -ax | grep -m1 '[n]ode ./node_modules/.bin/ganache-cli' | awk '{print $1;}')\" && echo 'local chain stopped.'",
"test": "./node_modules/.bin/truffle compile && node scripts/test/ci.js"
}
}