-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
33 lines (33 loc) · 1.21 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
{
"name": "testing-framework",
"version": "0.0.1",
"description": "generalized smartcontract testing tool",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "npx mocha",
"test:start": "PORT=8889 GETH=http://127.0.0.1:8888 ACCOUNTS=\"0x321f89f3a648166df5af4dd2c808d91ba190b617ee181bc3e94ed1c08801b1ac,0x43332f8bd112b2ed44d97e791bb609ff6f0e04e984d6823360370b6c6285b213\" node index.js",
"test:ganache": "npx ganache-cli -p 8888 --account \"0x321f89f3a648166df5af4dd2c808d91ba190b617ee181bc3e94ed1c08801b1ac,1000000000000000000000\" --account \"0x43332f8bd112b2ed44d97e791bb609ff6f0e04e984d6823360370b6c6285b213,1000000000000000000000\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/vulcanize/testing-framework.git"
},
"author": "vulcanize",
"license": "MIT",
"bugs": {
"url": "https://github.com/vulcanize/testing-framework/issues"
},
"homepage": "https://github.com/vulcanize/testing-framework#readme",
"dependencies": {
"@truffle/compile-solidity": "^5.3.4",
"fastify": "^3.17.0",
"uuid": "^2.0.1",
"web3": "^1.3.6"
},
"devDependencies": {
"ganache-cli": "^6.12.2",
"mocha": "^8.0.1",
"node-fetch": "^2.6.1"
}
}