-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·63 lines (63 loc) · 2.33 KB
/
package.json
File metadata and controls
executable file
·63 lines (63 loc) · 2.33 KB
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
53
54
55
56
57
58
59
60
61
62
63
{
"name": "staking-bank",
"version": "0.1.0",
"description": "Framework for Building Token Incentivized Sidechains w/ Non-Custodial Payments",
"main": "truffle.js",
"directories": {
"test": "test"
},
"scripts": {
"lint:solium": "solium --dir . --fix",
"lint:js": "./node_modules/.bin/eslint ./test --no-ignore --ext .js --fix",
"lint": "npm run lint:js && npm run lint:solium",
"test": "scripts/test.sh",
"coverage": "./node_modules/.bin/solidity-coverage",
"src:storage": "./node_modules/.bin/truffle-flattener ./contracts/StakingBankStorage.sol > all_storage.sol",
"src:contract": "./node_modules/.bin/truffle-flattener ./contracts/StakingBank.sol > all.sol",
"src": "npm run src:storage && npm run src:contract"
},
"repository": {
"type": "git",
"url": "git+https://github.com/luciditytech/staking-bank.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/luciditytech/staking-bank/issues"
},
"homepage": "https://github.com/luciditytech/staking-bank#readme",
"dependencies": {
"abi-decoder": "1.2.0",
"andromeda": "git+ssh://git@github.com/luciditytech/andromeda.git#develop",
"babel-polyfill": "6.26.0",
"babel-register": "6.26.0",
"bignumber.js": "8.1.1",
"bn.js": "4.11.8",
"contract-registry": "git+ssh://git@github.com/luciditytech/contract-registry.git#9c2fe02184f6ce70e836e03aee117ef27dfe7ec4",
"digivice": "git+ssh://git@github.com/luciditytech/digivice.git#develop",
"ethereumjs-util": "6.1.0",
"ethjs-provider-http": "0.1.6",
"ethjs-query": "0.3.8",
"ethjs-rpc": "0.2.0",
"ministro-tool": "0.2.2",
"token-sale-contracts": "git+ssh://git@github.com/luciditytech/token-sale-contracts.git#195342809eee9ffe053a19f855685df469838ed5",
"truffle-flattener": "1.3.0",
"web3": "1.0.0-beta.48"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-preset-env": "1.7.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-2": "6.24.1",
"babel-preset-stage-3": "6.24.1",
"babel-polyfill": "6.26.0",
"babel-register": "6.26.0",
"eslint": "5.15.1",
"eslint-config-airbnb-base": "13.1.0",
"eslint-plugin-import": "2.16.0",
"openzeppelin-solidity": "2.1.3",
"solidity-coverage": "0.5.11",
"solium": "1.2.3",
"web3-eth": "1.0.0-beta.47",
"web3-utils": "1.0.0-beta.47"
}
}