This repository has been archived by the owner on Jul 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
executable file
·58 lines (58 loc) · 1.75 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
53
54
55
56
57
58
{
"name": "polymath-token-distribution",
"version": "0.0.1",
"description": "Ethereum smart contracts for the POLY token distribution",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "scripts/test.sh",
"compile": "truffle compile",
"coverage": "./node_modules/.bin/solidity-coverage",
"migrate-local": "truffle migrate --network=local --reset",
"migrate-ropsten": "truffle migrate --network=ropsten --reset",
"migrate-kovan": "truffle migrate --network=kovan --reset",
"flatten": "sol-merger './contracts/*.sol' ./flat"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/PolymathNetwork/polymath-token-distribution.git"
},
"author": "Polymath Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/PolymathNetwork/polymath-token-distribution/issues"
},
"homepage": "https://github.com/PolymathNetwork/polymath-token-distribution#readme",
"dependencies": {
"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",
"bignumber.js": "4.0.2",
"codecov": "2.3.0",
"eth-lightwallet": "^3.0.1",
"ethereumjs-testrpc": "4.1.1",
"ethereumjs-tx": "^1.3.3",
"ethers": "^2.1.3",
"fast-csv": "^2.4.1",
"lodash": "4.17.4",
"mocha-lcov-reporter": "1.3.0",
"solc": "0.4.17",
"truffle": "4.0.1",
"truffle-contract": "^3.0.1",
"truffle-hdwallet-provider": "0.0.3",
"web3": "^1.0.0-beta.27",
"websocket": "^1.0.25",
"xtend": "4.0.1",
"yargs": "8.0.2"
},
"devDependencies": {
"should": "13.1.3",
"sol-merger": "0.1.2",
"solidity-coverage": "0.3.5",
"testrpc": "0.0.1"
}
}