-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
72 lines (72 loc) · 1.97 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "plasma-cli",
"description": "",
"author": {
"name": "Loom Network",
"url": "https://loomx.io"
},
"version": "0.1.4",
"keywords": [
"blockchain",
"dappchain",
"plasma"
],
"license": "BSD-3-Clause",
"bin": "dist/index.js",
"main": "dist/index.js",
"scripts": {
"build": "yarn copy-contracts && tsc",
"build:browser": "tsc && webpack",
"format": "prettier --write \"src/**/*.ts\"",
"test": "yarn copy-contracts && tsc && yarn tape",
"copy-contracts": "node ./scripts/copy-contracts.js",
"prepublish": "yarn build"
},
"dependencies": {
"@types/commander": "^2.12.2",
"@types/ethereumjs-tx": "^1.0.0",
"@types/lowdb": "^1.0.5",
"@types/vorpal": "^1.11.0",
"@types/web3": "^1.0.6",
"babel-core": "^6.26.3",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"bn.js": "^4.11.8",
"commander": "^2.19.0",
"ethereumjs-tx": "^1.3.7",
"ethereumjs-util": "^5.2.0",
"loom-js": "^1.32.0",
"lowdb": "^1.0.0",
"repl.history": "^0.1.4",
"rlp": "^2.1.0",
"vorpal": "^1.12.0",
"vorpal-log": "^1.1.0",
"vorpal-repl": "^1.1.8",
"web3": "1.0.0-beta.34"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.46",
"@babel/plugin-transform-runtime": "^7.0.0-beta.46",
"@babel/preset-env": "^7.0.0-beta.46",
"@babel/runtime": "^7.0.0-beta.46",
"@types/bn.js": "^4.11.1",
"@types/ethereumjs-util": "^5.2.0",
"@types/node": "^10.0.3",
"@types/tape": "^4.2.32",
"babel-cli": "^6.26.0",
"babel-loader": "^8.0.0-beta.2",
"dotenv": "^5.0.1",
"dotenv-webpack": "^1.5.5",
"prettier": "1.12.1",
"shelljs": "^0.8.2",
"tap-spec": "^5.0.0",
"tslint": "^5.9.1",
"tslint-config-prettier": "^1.12.0",
"tslint-config-standard": "^7.0.0",
"typescript": "^2.9.2",
"webpack": "^4.6.0",
"webpack-cli": "^2.1.2"
},
"browserslist": "last 2 versions"
}