-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 815 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 815 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
{
"name": "@spankchain/spankbank",
"main": "build",
"version": "0.1.5",
"dependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-bignumber": "^2.0.2",
"ethjs-provider-http": "^0.1.6",
"ethjs-rpc": "^0.2.0"
},
"devDependencies": {
"ganache-cli": "6.1.8",
"solc": "0.4.24",
"truffle": "5.0.0-beta.0",
"truffle-hdwallet-provider": "0.0.5",
"web3-eth-abi": "1.0.0-beta.36"
},
"scripts": {
"clean": "rm -rf build/",
"ganache": "node_modules/.bin/ganache-cli -m 'fetch local valve black attend double eye excite planet primary install allow'",
"compile": "node_modules/.bin/truffle compile",
"test": "node_modules/.bin/truffle test test/spank.js",
"build": "npm run clean && npm run compile",
"prepare": "npm run build"
}
}