-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.65 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.65 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
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"repository": {
"type": "git",
"url": "https://github.com/TallaBotChain/botchain.git"
},
"name": "botchain",
"version": "0.1.0",
"license": "MIT",
"main": "lib/index.js",
"files": [
"build",
"lib",
"src"
],
"dependencies": {
"argparse": "1.0.10",
"base32": "0.0.6",
"bn.js": "^4.11.8",
"bunyan": "^1.8.12",
"eth-lightwallet": "^3.0.1",
"ethereumjs-wallet": "0.6.0",
"ethjs": "^0.3.9",
"moment": "^2.22.2",
"toml": "^2.3.3",
"truffle-blockchain-utils": "^0.0.3",
"truffle-hdwallet-provider": "^0.0.3",
"web3": "^1.0.0-beta.34",
"zeppelin-solidity": "1.7.0",
"bs58": "^4.0.1"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-bignumber": "^2.0.2",
"cross-env": "^5.1.6",
"lk-test-helpers": "^0.1.3",
"lodash": "^4.17.5",
"shelljs": "^0.8.2",
"uglify-js": "git+https://github.com/mishoo/UglifyJS2.git#harmony",
"snazzy": "^7.0.0",
"solidity-coverage": "github:sc-forks/solidity-coverage#6a13575e3597e491299a9dd1474c64c9066faa69",
"sphinx-js": "0.0.9",
"standard": "^10.0.3",
"truffle": "^4.1.14",
"truffle-contract": "3.0.1",
"truffle-ext": "0.1.8"
},
"scripts": {
"build": "node scripts/build.js",
"cleanup": "rm -rf build/ && mkdir build",
"compile": "truffle compile --all",
"deploy:development": "truffle migrate --network development",
"deploy:mainnet": "truffle migrate --network mainnet",
"deploy:kovan": "truffle migrate --network kovan",
"deploy:rinkeby-infura": "truffle migrate --network rinkeby_infura",
"deploy:kovan-infura": "truffle migrate --network kovan_infura",
"deploy-reset:development": "npm run cleanup && truffle migrate --reset --network development",
"deploy-reset:mainnet": "npm run cleanup && truffle migrate --reset --network mainnet",
"deploy-reset:kovan": "npm run cleanup && truffle migrate --reset --network kovan",
"deploy-reset:rinkeby-infura": "npm run cleanup && truffle migrate --reset --network rinkeby_infura",
"deploy-reset:kovan-infura": "npm run cleanup && truffle migrate --reset --network kovan_infura",
"test": "scripts/test.sh",
"test:truffle": "truffle test",
"test:coverage": "npm run solidity-coverage",
"testrpc": "scripts/runTestrpc.sh",
"lint": "standard --verbose | snazzy"
}
}