-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (32 loc) · 956 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
{
"name": "@giveth/commons-abc-lib",
"version": "0.2.4",
"main": "src/index.js",
"dependencies": {
"bn.js": "^4.11.8"
},
"devDependencies": {
"@giveth/commons-abc-contracts": "^0.2.0",
"chai": "^4.2.0",
"concurrently": "^4.1.0",
"dotenv": "^7.0.0",
"ganache-cli": "^6.4.2",
"mocha": "^6.1.3",
"truffle": "^5.0.12",
"truffle-hdwallet-provider": "^1.0.6",
"truffle-privatekey-provider": "^1.1.0",
"wait-on": "^3.2.0",
"web3": "^1.0.0-beta.52"
},
"peerDependencies": {
"@giveth/commons-abc-contracts": "^0.2.0",
"web3": "^1.0.0-beta.52"
},
"scripts": {
"ci": "concurrently 'npm:ganache' 'npm:deploy:test'",
"test": "./node_modules/.bin/mocha --reporter spec",
"ganache": "npm explore @giveth/commons-abc-contracts -- npm run ganache",
"deploy": "npm explore @giveth/commons-abc-contracts -- npm run deploy",
"deploy:test": "npm run deploy && npm run test"
}
}