-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
52 lines (52 loc) · 2.03 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "token",
"version": "0.1.0",
"description": "This is contract of Airbloc token.",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"scripts": {
"lint": "solium --watch --dir contracts",
"ganache-run": "docker run --name ganache -d -p 8545:8545 trufflesuite/ganache-cli -a 50",
"ganache-stop": "docker rm -f ganache",
"export": "npm run ganache-run; truffle export abi; npm run ganache-stop",
"test": "npm run ganache-run; truffle test; npm run ganache-stop",
"test:ropsten": "truffle test --network ropsten",
"test:rinkeby": "truffle test --network rinkeby",
"migrate": "npm run ganache-run; truffle migrate --network development --reset; npm run ganache-stop;",
"migrate:ropsten": "truffle migrate --network ropsten --reset",
"migrate:rinkeby": "truffle migrate --network rinkeby --reset",
"migrate:mainnet": "truffle migrate --network mainnet --reset",
"console": "npm run ganache-run; npm run migrate; truffle console; npm run ganache-stop"
},
"repository": {
"type": "git",
"url": "git+https://github.com/airbloc/token.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/airbloc/token/issues"
},
"homepage": "https://github.com/airbloc/token#readme",
"dependencies": {
"colors": "^1.2.4",
"openzeppelin-solidity": "1.10.0"
},
"devDependencies": {
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-bignumber": "^2.0.2",
"solium": "^1.1.7",
"truffle-hdwallet-provider": "0.0.3",
"truffle-hdwallet-provider-privkey": "git+https://github.com/rhlsthrm/truffle-hdwallet-provider-privkey.git",
"truffle-ledger-provider": "0.0.1"
}
}