-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 884 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 884 Bytes
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
{
"name": "web3js-integration-tests",
"version": "0.0.1",
"description": "Integration tests for web3js and ganache",
"directories": {
"test": "test"
},
"dependencies": {
"ganache-cli": "6.4.1",
"truffle": "5.0.11",
"web3": "1.0.0-beta.52"
},
"devDependencies": {
"chai": "4.2.0",
"mocha": "6.0.2",
"sinon": "7.3.1"
},
"scripts": {
"start": "echo nothing to start here, try test",
"test": "yarn mocha --exit",
"migrate": "yarn truffle migrate",
"runmigrate": "yarn ganache:run -m 'dynamic oyster salute make easy extra craft frequent buddy lab warrior local' & yarn migrate && echo 'Migration done. Contracts deployed to ganache. Contract artifacts are in build/contracts folder.' & wait",
"ganache:run": "yarn ganache-cli"
},
"keywords": [
"web3js tests"
],
"author": "Augmint",
"license": "GPL-3.0"
}